Home
last modified time | relevance | path

Searched refs:command_allocator (Results 1 – 25 of 25) sorted by relevance

/dports/graphics/vkd3d/vkd3d-1.2/tests/
H A Dd3d12_invalid_usage.c38 ID3D12CommandAllocator *command_allocator; in test_invalid_resource_barriers() local
54 &IID_ID3D12CommandAllocator, (void **)&command_allocator); in test_invalid_resource_barriers()
72 reset_command_list(command_list, command_allocator); in test_invalid_resource_barriers()
88 recreate_command_list(device, command_allocator, &command_list); in test_invalid_resource_barriers()
105 recreate_command_list(device, command_allocator, &command_list); in test_invalid_resource_barriers()
114 recreate_command_list(device, command_allocator, &command_list); in test_invalid_resource_barriers()
122 recreate_command_list(device, command_allocator, &command_list); in test_invalid_resource_barriers()
130 recreate_command_list(device, command_allocator, &command_list); in test_invalid_resource_barriers()
138 ID3D12CommandAllocator_Release(command_allocator); in test_invalid_resource_barriers()
152 ID3D12CommandAllocator *command_allocator; in test_invalid_copy_texture_region() local
[all …]
H A Dd3d12.c1462 ID3D12CommandAllocator *command_allocator; in test_create_command_allocator() local
1522 ID3D12CommandAllocator *command_allocator; in test_create_command_list() local
1549 refcount = get_refcount(command_allocator); in test_create_command_list()
3657 hr = ID3D12CommandAllocator_Reset(command_allocator); in test_reset_command_allocator()
3759 ID3D12CommandAllocator_Release(command_allocator); in test_reset_command_allocator()
6966 ID3D12CommandAllocator *command_allocator; in test_texture_resource_barriers() local
7063 ID3D12CommandAllocator_Release(command_allocator); in test_texture_resource_barriers()
7073 ID3D12CommandAllocator *command_allocator; in test_device_removed_reason() local
7121 ID3D12CommandAllocator_Release(command_allocator); in test_device_removed_reason()
23151 ID3D12CommandAllocator *command_allocator; in test_resolve_query_data_in_reordered_command_list() local
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/third_party/rust/gfx-backend-dx12/src/
H A Dpool.rs30 let command_allocator = match self.allocator { in create_command_list() localVariable
33 let (command_allocator, hr) = self.device.create_command_allocator(self.list_type); in create_command_list()
40 allocators.push(command_allocator); in create_command_list()
41 command_allocator in create_command_list()
48 command_allocator, in create_command_list()
61 (command_list, command_allocator) in create_command_list()
100 let (command_list, command_allocator) = self.create_command_list(); in allocate_one()
103 command_allocator, in allocate_one()
H A Ddevice.rs1221 let (command_allocator, hr) = self.raw.create_command_allocator(list_type); in create_command_pool()
1228 CommandPoolAllocator::Shared(command_allocator) in create_command_pool()
/dports/graphics/rx/rx-0.4.0/cargo-crates/gfx-backend-dx12-0.4.1/src/
H A Dpool.rs33 let command_allocator = match self.allocator { in create_command_list() localVariable
36 let (command_allocator, hr) = self.device.create_command_allocator(self.list_type); in create_command_list()
43 allocators.push(command_allocator); in create_command_list()
44 command_allocator in create_command_list()
51 command_allocator, in create_command_list()
64 (command_list, command_allocator) in create_command_list()
103 let (command_list, command_allocator) = self.create_command_list(); in allocate_one()
106 command_allocator, in allocate_one()
H A Ddevice.rs1169 let (command_allocator, hr) = self.raw.create_command_allocator(list_type); in create_command_pool()
1176 CommandPoolAllocator::Shared(command_allocator) in create_command_pool()
/dports/graphics/vkd3d/vkd3d-1.2/demos/
H A Dtriangle.c77 ID3D12CommandAllocator *command_allocator; member
97 hr = ID3D12CommandAllocator_Reset(cxt->command_allocator); in cxt_populate_command_list()
100 …hr = ID3D12GraphicsCommandList_Reset(cxt->command_list, cxt->command_allocator, cxt->pipeline_stat… in cxt_populate_command_list()
167 ID3D12CommandAllocator_Release(cxt->command_allocator); in cxt_destroy_pipeline()
224 &IID_ID3D12CommandAllocator, (void **)&cxt->command_allocator); in cxt_load_pipeline()
309 …D12Device_CreateCommandList(cxt->device, 0, D3D12_COMMAND_LIST_TYPE_DIRECT, cxt->command_allocator, in cxt_load_assets()
H A Dgears.c128 ID3D12CommandAllocator *command_allocator[3]; member
155 hr = ID3D12CommandAllocator_Reset(cxg->command_allocator[rt_idx]); in cxg_populate_command_list()
158 …hr = ID3D12GraphicsCommandList_Reset(command_list, cxg->command_allocator[rt_idx], cxg->pipeline_s… in cxg_populate_command_list()
309 for (i = 0; i < ARRAY_SIZE(cxg->command_allocator); ++i) in cxg_destroy_pipeline()
311 ID3D12CommandAllocator_Release(cxg->command_allocator[i]); in cxg_destroy_pipeline()
376 for (i = 0; i < ARRAY_SIZE(cxg->command_allocator); ++i) in cxg_load_pipeline()
379 &IID_ID3D12CommandAllocator, (void **)&cxg->command_allocator[i]); in cxg_load_pipeline()
720 cxg->command_allocator[i], cxg->pipeline_state_flat, in cxg_load_assets()
/dports/www/firefox/firefox-99.0/third_party/rust/d3d12/src/
H A Dlib.rs11 mod command_allocator; module
25 pub use crate::command_allocator::*;
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/rust/d3d12/src/
H A Dlib.rs11 mod command_allocator; module
25 pub use crate::command_allocator::*;
/dports/www/firefox-esr/firefox-91.8.0/third_party/rust/d3d12/src/
H A Dlib.rs11 mod command_allocator; module
25 pub use crate::command_allocator::*;
/dports/lang/spidermonkey78/firefox-78.9.0/third_party/rust/d3d12/src/
H A Dlib.rs10 mod command_allocator; module
24 pub use crate::command_allocator::*;
/dports/graphics/rx/rx-0.4.0/cargo-crates/d3d12-0.3.0/src/
H A Dlib.rs10 mod command_allocator; module
24 pub use crate::command_allocator::*;
/dports/emulators/dolphin-emu/dolphin-3152428/Source/Core/VideoBackends/D3D12/
H A DDXContext.cpp419 D3D12_COMMAND_LIST_TYPE_DIRECT, IID_PPV_ARGS(res.command_allocator.GetAddressOf())); in CreateCommandLists()
424 hr = m_device->CreateCommandList(1, D3D12_COMMAND_LIST_TYPE_DIRECT, res.command_allocator.Get(), in CreateCommandLists()
460 res.command_allocator->Reset(); in MoveToNextCommandList()
461 res.command_list->Reset(res.command_allocator.Get(), nullptr); in MoveToNextCommandList()
H A DDXContext.h136 ComPtr<ID3D12CommandAllocator> command_allocator; member
/dports/games/retroarch/RetroArch-1.9.7/gfx/common/
H A Dd3d12_common.h153 static INLINE ULONG D3D12ReleaseCommandAllocator(D3D12CommandAllocator command_allocator) in D3D12ReleaseCommandAllocator() argument
155 return command_allocator->lpVtbl->Release(command_allocator); in D3D12ReleaseCommandAllocator()
157 static INLINE HRESULT D3D12ResetCommandAllocator(D3D12CommandAllocator command_allocator) in D3D12ResetCommandAllocator() argument
159 return command_allocator->lpVtbl->Reset(command_allocator); in D3D12ResetCommandAllocator()
675 D3D12CommandAllocator command_allocator, in D3D12CreateCommandList() argument
680 device, node_mask, type, command_allocator, initial_state, uuidof(ID3D12CommandList), in D3D12CreateCommandList()
1186 D3D12CommandAllocator command_allocator, in D3D12CreateGraphicsCommandList() argument
1191 device, node_mask, type, command_allocator, initial_state, in D3D12CreateGraphicsCommandList()
/dports/www/firefox/firefox-99.0/third_party/rust/wgpu-core/src/device/
H A Dqueue.rs156 command_allocator: &Mutex<super::CommandAllocator<A>>, in post_submit()
161 let new_encoder = command_allocator in post_submit()
861 &device.command_allocator, in queue_submit()
H A Dlife.rs297 command_allocator: &Mutex<super::CommandAllocator<A>>, in triage_submissions()
316 command_allocator.lock().release_encoder(raw);
H A Dmod.rs267 command_allocator: Mutex<CommandAllocator<A>>, field
376 command_allocator: Mutex::new(com_alloc), in new()
451 life_tracker.triage_submissions(last_done_index, &self.command_allocator); in maintain()
2754 .triage_submissions(submission_index, &self.command_allocator); in wait_for_submit()
2831 let _ = life_tracker.triage_submissions(current_index, &self.command_allocator); in prepare_to_die()
2841 self.command_allocator.into_inner().dispose(&self.raw); in dispose()
4180 .command_allocator in device_create_command_encoder()
/dports/graphics/vkd3d/vkd3d-1.2/include/
H A Dvkd3d_d3d12.h6286 void **command_allocator) = 0;
6301 ID3D12CommandAllocator *command_allocator,
6576 void **command_allocator);
6594 ID3D12CommandAllocator *command_allocator,
6825 …ommandAllocator(This,type,riid,command_allocator) (This)->lpVtbl->CreateCommandAllocator(This,type…
6828 …_mask,type,command_allocator,initial_pipeline_state,riid,command_list) (This)->lpVtbl->CreateComma…
6892 return This->lpVtbl->CreateCommandAllocator(This,type,riid,command_allocator);
7092 void **command_allocator);
7110 ID3D12CommandAllocator *command_allocator,
7363 …ommandAllocator(This,type,riid,command_allocator) (This)->lpVtbl->CreateCommandAllocator(This,type…
[all …]
H A Dvkd3d_d3d12.idl2362 REFIID riid, void **command_allocator);
2369 ID3D12CommandAllocator *command_allocator,
/dports/lang/zig/zig-0.9.0/lib/libc/include/any-windows-any/
H A Dd3d12.h6318 void **command_allocator) = 0;
6333 ID3D12CommandAllocator *command_allocator,
6608 void **command_allocator);
6626 ID3D12CommandAllocator *command_allocator,
6857 …ommandAllocator(This,type,riid,command_allocator) (This)->lpVtbl->CreateCommandAllocator(This,type…
6860 …_mask,type,command_allocator,initial_pipeline_state,riid,command_list) (This)->lpVtbl->CreateComma…
6924 return This->lpVtbl->CreateCommandAllocator(This,type,riid,command_allocator);
7124 void **command_allocator);
7142 ID3D12CommandAllocator *command_allocator,
7395 …ommandAllocator(This,type,riid,command_allocator) (This)->lpVtbl->CreateCommandAllocator(This,type…
[all …]
/dports/lang/zig-devel/zig-0.9.0/lib/libc/include/any-windows-any/
H A Dd3d12.h6318 void **command_allocator) = 0;
6333 ID3D12CommandAllocator *command_allocator,
6608 void **command_allocator);
6626 ID3D12CommandAllocator *command_allocator,
6857 …ommandAllocator(This,type,riid,command_allocator) (This)->lpVtbl->CreateCommandAllocator(This,type…
6860 …_mask,type,command_allocator,initial_pipeline_state,riid,command_list) (This)->lpVtbl->CreateComma…
6924 return This->lpVtbl->CreateCommandAllocator(This,type,riid,command_allocator);
7124 void **command_allocator);
7142 ID3D12CommandAllocator *command_allocator,
7395 …ommandAllocator(This,type,riid,command_allocator) (This)->lpVtbl->CreateCommandAllocator(This,type…
[all …]
/dports/graphics/vkd3d/vkd3d-1.2/libs/vkd3d/
H A Ddevice.c2310 D3D12_COMMAND_LIST_TYPE type, REFIID riid, void **command_allocator) in d3d12_device_CreateCommandAllocator() argument
2317 iface, type, debugstr_guid(riid), command_allocator); in d3d12_device_CreateCommandAllocator()
2323 riid, command_allocator); in d3d12_device_CreateCommandAllocator()
2361 UINT node_mask, D3D12_COMMAND_LIST_TYPE type, ID3D12CommandAllocator *command_allocator, in d3d12_device_CreateCommandList() argument
2370 iface, node_mask, type, command_allocator, in d3d12_device_CreateCommandList()
2373 if (FAILED(hr = d3d12_command_list_create(device, node_mask, type, command_allocator, in d3d12_device_CreateCommandList()
/dports/lang/halide/Halide-release_2019_08_27-2654-g664dc4993/src/runtime/
H A Dd3d12compute.cpp2661 …d3d12_command_allocator *command_allocator = new_command_allocator<HALIDE_D3D12_COMMAND_LIST_TYPE>… in halide_d3d12compute_run() local
2662 if (command_allocator == 0) { in halide_d3d12compute_run()
2667 d3d12_compute_command_list *cmdList = new_compute_command_list(device, command_allocator); in halide_d3d12compute_run()
2832 release_object(command_allocator); in halide_d3d12compute_run()