Home
last modified time | relevance | path

Searched refs:commandList (Results 1 – 21 of 21) sorted by relevance

/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/d3d12/
DCommandBufferD3D12.cpp150 void SetBindGroup(ComPtr<ID3D12GraphicsCommandList> commandList, in SetBindGroup() argument
166 commandList->SetComputeRootDescriptorTable( in SetBindGroup()
170 commandList->SetGraphicsRootDescriptorTable( in SetBindGroup()
180 commandList->SetComputeRootDescriptorTable( in SetBindGroup()
184 commandList->SetGraphicsRootDescriptorTable( in SetBindGroup()
192 void SetInheritedBindGroups(ComPtr<ID3D12GraphicsCommandList> commandList, in SetInheritedBindGroups() argument
201 SetBindGroup(commandList, newLayout, mBindGroups[i], i, true); in SetInheritedBindGroups()
211 void SetID3D12DescriptorHeaps(ComPtr<ID3D12GraphicsCommandList> commandList) { in SetID3D12DescriptorHeaps() argument
212 ASSERT(commandList != nullptr); in SetID3D12DescriptorHeaps()
216 commandList->SetDescriptorHeaps(2, descriptorHeaps); in SetID3D12DescriptorHeaps()
[all …]
DDeviceD3D12.cpp107 mPendingCommands.commandList->Close(); in ~Device()
109 mPendingCommands.commandList = nullptr; in ~Device()
124 ASSERT(mPendingCommands.commandList == nullptr); in ~Device()
167 void Device::OpenCommandList(ComPtr<ID3D12GraphicsCommandList>* commandList) { in OpenCommandList() argument
168 ComPtr<ID3D12GraphicsCommandList>& cmdList = *commandList; in OpenCommandList()
184 OpenCommandList(&mPendingCommands.commandList); in GetPendingCommandList()
187 return mPendingCommands.commandList; in GetPendingCommandList()
240 mPendingCommands.commandList->Close(); in ExecuteCommandLists()
242 lists[0] = mPendingCommands.commandList.Get(); in ExecuteCommandLists()
246 mPendingCommands.commandList = nullptr; in ExecuteCommandLists()
DCommandBufferD3D12.h54 void RecordCommands(ComPtr<ID3D12GraphicsCommandList> commandList, uint32_t indexInSubmit);
57 void FlushSetVertexBuffers(ComPtr<ID3D12GraphicsCommandList> commandList,
60 void RecordComputePass(ComPtr<ID3D12GraphicsCommandList> commandList,
62 void RecordRenderPass(ComPtr<ID3D12GraphicsCommandList> commandList,
DTextureD3D12.h39 void TransitionUsageNow(ComPtr<ID3D12GraphicsCommandList> commandList,
41 void TransitionUsageNow(ComPtr<ID3D12GraphicsCommandList> commandList,
48 void EnsureSubresourceContentInitialized(ComPtr<ID3D12GraphicsCommandList> commandList,
57 void ClearTexture(ComPtr<ID3D12GraphicsCommandList> commandList,
DTextureD3D12.cpp409 void Texture::TransitionUsageNow(ComPtr<ID3D12GraphicsCommandList> commandList, in TransitionUsageNow() argument
411 TransitionUsageNow(commandList, D3D12TextureUsage(usage, GetFormat())); in TransitionUsageNow()
414 void Texture::TransitionUsageNow(ComPtr<ID3D12GraphicsCommandList> commandList, in TransitionUsageNow() argument
419 commandList->ResourceBarrier(1, &barrier); in TransitionUsageNow()
467 void Texture::ClearTexture(ComPtr<ID3D12GraphicsCommandList> commandList, in ClearTexture() argument
483 TransitionUsageNow(commandList, D3D12_RESOURCE_STATE_DEPTH_WRITE); in ClearTexture()
498 commandList->ClearDepthStencilView(dsvHandle, clearFlags, 0.0f, 0u, 0, nullptr); in ClearTexture()
500 TransitionUsageNow(commandList, D3D12_RESOURCE_STATE_RENDER_TARGET); in ClearTexture()
512 commandList->ClearRenderTargetView(rtvHandle, clearColor, 0, nullptr); in ClearTexture()
518 void Texture::EnsureSubresourceContentInitialized(ComPtr<ID3D12GraphicsCommandList> commandList, in EnsureSubresourceContentInitialized() argument
[all …]
DPlatformFunctions.h66 HRESULT(WINAPI*)(ID3D12GraphicsCommandList* commandList);
71 WINAPI*)(ID3D12GraphicsCommandList* commandList, UINT64 color, _In_ PCSTR formatString);
76 WINAPI*)(ID3D12GraphicsCommandList* commandList, UINT64 color, _In_ PCSTR formatString);
DDeviceD3D12.h66 void OpenCommandList(ComPtr<ID3D12GraphicsCommandList>* commandList);
120 ComPtr<ID3D12GraphicsCommandList> commandList; member
DBufferD3D12.cpp185 void Buffer::TransitionUsageNow(ComPtr<ID3D12GraphicsCommandList> commandList, in TransitionUsageNow() argument
190 commandList->ResourceBarrier(1, &barrier); in TransitionUsageNow()
DBufferD3D12.h38 void TransitionUsageNow(ComPtr<ID3D12GraphicsCommandList> commandList,
/third_party/skia/third_party/externals/dawn/src/dawn_native/d3d12/
DCommandBufferD3D12.cpp91 void RecordWriteTimestampCmd(ID3D12GraphicsCommandList* commandList, in RecordWriteTimestampCmd() argument
95 commandList->EndQuery(querySet->GetQueryHeap(), D3D12_QUERY_TYPE_TIMESTAMP, in RecordWriteTimestampCmd()
99 void RecordResolveQuerySetCmd(ID3D12GraphicsCommandList* commandList, in RecordResolveQuerySetCmd() argument
130 commandList->ResolveQueryData( in RecordResolveQuerySetCmd()
140 void RecordFirstIndexOffset(ID3D12GraphicsCommandList* commandList, in RecordFirstIndexOffset() argument
159 commandList->SetGraphicsRoot32BitConstants(layout->GetFirstIndexOffsetParameterIndex(), in RecordFirstIndexOffset()
241 void RecordNumWorkgroupsForDispatch(ID3D12GraphicsCommandList* commandList, in RecordNumWorkgroupsForDispatch() argument
249 commandList->SetComputeRoot32BitConstants(layout->GetNumWorkgroupsParameterIndex(), 3, in RecordNumWorkgroupsForDispatch()
260 ID3D12GraphicsCommandList* commandList = commandContext->GetCommandList(); in TransitionAndClearForSyncScope() local
301 commandList->ResourceBarrier(barriers.size(), barriers.data()); in TransitionAndClearForSyncScope()
[all …]
DUtilsD3D12.cpp147 void RecordCopyBufferToTextureFromTextureCopySplit(ID3D12GraphicsCommandList* commandList, in RecordCopyBufferToTextureFromTextureCopySplit() argument
172 commandList->CopyTextureRegion(&textureLocation, info.textureOffset.x, in RecordCopyBufferToTextureFromTextureCopySplit()
266 void RecordCopyTextureToBufferFromTextureCopySplit(ID3D12GraphicsCommandList* commandList, in RecordCopyTextureToBufferFromTextureCopySplit() argument
291 commandList->CopyTextureRegion(&bufferLocation, info.bufferOffset.x, in RecordCopyTextureToBufferFromTextureCopySplit()
297 void Copy2DTextureToBufferWithCopySplit(ID3D12GraphicsCommandList* commandList, in Copy2DTextureToBufferWithCopySplit() argument
332 commandList, copySplitPerLayerBase, buffer, bufferOffsetForNextLayer, in Copy2DTextureToBufferWithCopySplit()
341 void Copy3DTextureToBuffer(ID3D12GraphicsCommandList* commandList, in Copy3DTextureToBuffer() argument
356 RecordCopyTextureToBufferFromTextureCopySplit(commandList, copyRegions, buffer, 0, in Copy3DTextureToBuffer()
361 void RecordCopyTextureToBuffer(ID3D12GraphicsCommandList* commandList, in RecordCopyTextureToBuffer() argument
368 Copy3DTextureToBuffer(commandList, textureCopy, bufferCopy, texture, buffer, copySize); in RecordCopyTextureToBuffer()
[all …]
DUtilsD3D12.h47 void RecordCopyBufferToTextureFromTextureCopySplit(ID3D12GraphicsCommandList* commandList,
67 void RecordCopyTextureToBufferFromTextureCopySplit(ID3D12GraphicsCommandList* commandList,
77 void RecordCopyTextureToBuffer(ID3D12GraphicsCommandList* commandList,
DPlatformFunctions.h72 HRESULT(WINAPI*)(ID3D12GraphicsCommandList* commandList);
77 WINAPI*)(ID3D12GraphicsCommandList* commandList, UINT64 color, _In_ PCSTR formatString);
82 WINAPI*)(ID3D12GraphicsCommandList* commandList, UINT64 color, _In_ PCSTR formatString);
DTextureD3D12.cpp993 ID3D12GraphicsCommandList* commandList = commandContext->GetCommandList(); in ClearTexture() local
1044 commandList->ClearDepthStencilView(baseDescriptor, clearFlags, fClearColor, in ClearTexture()
1081 commandList->ClearRenderTargetView(rtvHandle, clearColorRGBA, 0, nullptr); in ClearTexture()
1123 commandList, copySplit, in ClearTexture()
/third_party/skia/src/gpu/d3d/
DGrD3DCommandList.cpp23 gr_cp<ID3D12GraphicsCommandList> commandList) in GrD3DCommandList() argument
24 : fCommandList(std::move(commandList)) in GrD3DCommandList()
276 gr_cp<ID3D12GraphicsCommandList> commandList; in Make() local
279 IID_PPV_ARGS(&commandList))); in Make()
281 auto grCL = new GrD3DDirectCommandList(std::move(allocator), std::move(commandList), in Make()
287 gr_cp<ID3D12GraphicsCommandList> commandList, in GrD3DDirectCommandList() argument
289 : GrD3DCommandList(std::move(allocator), std::move(commandList)) in GrD3DDirectCommandList()
604 gr_cp<ID3D12GraphicsCommandList> commandList; in Make() local
606 nullptr, IID_PPV_ARGS(&commandList))); in Make()
607 auto grCL = new GrD3DCopyCommandList(std::move(allocator), std::move(commandList)); in Make()
[all …]
DGrD3DCommandList.h120 gr_cp<ID3D12GraphicsCommandList> commandList);
211 gr_cp<ID3D12GraphicsCommandList> commandList,
241 gr_cp<ID3D12GraphicsCommandList> commandList);
DGrD3DPipelineState.cpp156 GrD3DDirectCommandList* commandList) { in bindBuffers() argument
173 commandList->setVertexBuffers(0, std::move(vertexBuffer), fVertexStride, in bindBuffers()
181 commandList->setIndexBuffer(std::move(indexBuffer)); in bindBuffers()
DGrD3DResourceProvider.cpp47 std::unique_ptr<GrD3DDirectCommandList> commandList) { in recycleDirectCommandList() argument
48 commandList->reset(); in recycleDirectCommandList()
49 fAvailableDirectCommandLists.push_back(std::move(commandList)); in recycleDirectCommandList()
DGrD3DPipelineState.h54 GrD3DDirectCommandList* commandList);
DGrD3DGpu.h307 OutstandingCommandList(std::unique_ptr<GrD3DDirectCommandList> commandList, in OutstandingCommandList()
309 : fCommandList(std::move(commandList)), fFenceValue(fenceValue) { in OutstandingCommandList()
/third_party/flutter/flutter/packages/flutter_tools/lib/src/ios/
Ddevices.dart44 …final List<String> commandList = iosDeployPath != null ? <String>[iosDeployPath] : fallbackIosDepl…
46 ...commandList,