Home
last modified time | relevance | path

Searched defs:UnsafeCommandBufferBuilder (Results 1 – 14 of 14) sorted by relevance

/aosp_15_r20/external/rust/android-crates-io/crates/vulkano/src/command_buffer/
Dsys.rs40 pub struct UnsafeCommandBufferBuilder { struct
46 impl UnsafeCommandBufferBuilder { argument
57 ) -> Result<UnsafeCommandBufferBuilder, OomError> { in new()
210 unsafe impl VulkanObject for UnsafeCommandBufferBuilder { implementation
219 unsafe impl DeviceOwned for UnsafeCommandBufferBuilder { implementation
/aosp_15_r20/external/rust/android-crates-io/crates/vulkano/src/command_buffer/commands/
Ddynamic_state.rs1739 unsafe fn send(&self, out: &mut UnsafeCommandBufferBuilder) { in send()
1764 unsafe fn send(&self, out: &mut UnsafeCommandBufferBuilder) { in set_color_write_enable()
1788 unsafe fn send(&self, out: &mut UnsafeCommandBufferBuilder) { in set_cull_mode()
1811 unsafe fn send(&self, out: &mut UnsafeCommandBufferBuilder) { in set_depth_bias()
1840 unsafe fn send(&self, out: &mut UnsafeCommandBufferBuilder) { in set_depth_bias_enable()
1861 unsafe fn send(&self, out: &mut UnsafeCommandBufferBuilder) { in set_depth_bounds()
1884 unsafe fn send(&self, out: &mut UnsafeCommandBufferBuilder) { in set_depth_bounds_test_enable()
1905 unsafe fn send(&self, out: &mut UnsafeCommandBufferBuilder) { in set_depth_compare_op()
1926 unsafe fn send(&self, out: &mut UnsafeCommandBufferBuilder) { in set_depth_test_enable()
1947 unsafe fn send(&self, out: &mut UnsafeCommandBufferBuilder) { in set_depth_write_enable()
[all …]
Ddebug.rs196 unsafe fn send(&self, out: &mut UnsafeCommandBufferBuilder) { in begin_debug_utils_label()
221 unsafe fn send(&self, out: &mut UnsafeCommandBufferBuilder) { in end_debug_utils_label()
245 unsafe fn send(&self, out: &mut UnsafeCommandBufferBuilder) { in insert_debug_utils_label()
254 impl UnsafeCommandBufferBuilder { impl
Dsync.rs39 unsafe fn send(&self, out: &mut UnsafeCommandBufferBuilder) { in set_event()
65 unsafe fn send(&self, out: &mut UnsafeCommandBufferBuilder) { in wait_events()
92 unsafe fn send(&self, out: &mut UnsafeCommandBufferBuilder) { in reset_event()
101 impl UnsafeCommandBufferBuilder { impl
Dquery.rs641 unsafe fn send(&self, out: &mut UnsafeCommandBufferBuilder) { in begin_query()
666 unsafe fn send(&self, out: &mut UnsafeCommandBufferBuilder) { in end_query()
693 unsafe fn send(&self, out: &mut UnsafeCommandBufferBuilder) { in write_timestamp()
733 unsafe fn send(&self, out: &mut UnsafeCommandBufferBuilder) { in copy_query_pool_results()
795 unsafe fn send(&self, out: &mut UnsafeCommandBufferBuilder) { in reset_query_pool()
807 impl UnsafeCommandBufferBuilder { implementation
Dbind_push.rs740 unsafe fn send(&self, out: &mut UnsafeCommandBufferBuilder) { in bind_index_buffer()
761 unsafe fn send(&self, out: &mut UnsafeCommandBufferBuilder) { in bind_pipeline_compute()
782 unsafe fn send(&self, out: &mut UnsafeCommandBufferBuilder) { in bind_pipeline_graphics()
834 unsafe fn send(&self, out: &mut UnsafeCommandBufferBuilder) { in push_constants()
894 unsafe fn send(&self, out: &mut UnsafeCommandBufferBuilder) { in push_descriptor_set()
972 unsafe fn send(&self, out: &mut UnsafeCommandBufferBuilder) { in submit()
1039 unsafe fn send(&self, out: &mut UnsafeCommandBufferBuilder) { in submit()
1059 impl UnsafeCommandBufferBuilder { impl
Dclear.rs551 unsafe fn send(&self, out: &mut UnsafeCommandBufferBuilder) { in clear_color_image()
623 unsafe fn send(&self, out: &mut UnsafeCommandBufferBuilder) { in clear_depth_stencil_image()
694 unsafe fn send(&self, out: &mut UnsafeCommandBufferBuilder) { in fill_buffer()
756 unsafe fn send(&self, out: &mut UnsafeCommandBufferBuilder) { in update_buffer()
795 impl UnsafeCommandBufferBuilder { implementation
Drender_pass.rs1480 unsafe fn send(&self, out: &mut UnsafeCommandBufferBuilder) { in begin_render_pass()
1560 unsafe fn send(&self, out: &mut UnsafeCommandBufferBuilder) { in next_subpass()
1578 unsafe fn send(&self, out: &mut UnsafeCommandBufferBuilder) { in end_render_pass()
1603 unsafe fn send(&self, out: &mut UnsafeCommandBufferBuilder) { in begin_rendering()
1851 unsafe fn send(&self, out: &mut UnsafeCommandBufferBuilder) { in end_rendering()
1880 unsafe fn send(&self, out: &mut UnsafeCommandBufferBuilder) { in clear_attachments()
1891 impl UnsafeCommandBufferBuilder { impl
Dpipeline.rs1682 unsafe fn send(&self, out: &mut UnsafeCommandBufferBuilder) { in send()
1727 unsafe fn send(&self, out: &mut UnsafeCommandBufferBuilder) { in dispatch_indirect()
1784 unsafe fn send(&self, out: &mut UnsafeCommandBufferBuilder) { in draw()
1848 unsafe fn send(&self, out: &mut UnsafeCommandBufferBuilder) { in draw_indexed()
1911 unsafe fn send(&self, out: &mut UnsafeCommandBufferBuilder) { in draw_indirect()
1971 unsafe fn send(&self, out: &mut UnsafeCommandBufferBuilder) { in draw_indexed_indirect()
2315 impl UnsafeCommandBufferBuilder { impl
Dcopy.rs2602 unsafe fn send(&self, out: &mut UnsafeCommandBufferBuilder) { in copy_buffer()
2696 unsafe fn send(&self, out: &mut UnsafeCommandBufferBuilder) { in copy_image()
2798 unsafe fn send(&self, out: &mut UnsafeCommandBufferBuilder) { in copy_buffer_to_image()
2901 unsafe fn send(&self, out: &mut UnsafeCommandBufferBuilder) { in copy_image_to_buffer()
3004 unsafe fn send(&self, out: &mut UnsafeCommandBufferBuilder) { in blit_image()
3106 unsafe fn send(&self, out: &mut UnsafeCommandBufferBuilder) { in resolve_image()
3191 impl UnsafeCommandBufferBuilder { impl
Dsecondary.rs449 unsafe fn send(&self, out: &mut UnsafeCommandBufferBuilder) { in submit()
545 impl UnsafeCommandBufferBuilder { impl
/aosp_15_r20/external/crosvm/gpu_display/src/vulkan/
H A Dexternal_image.rs123 command_buffer_builder: &mut UnsafeCommandBufferBuilder, in acquire()
179 command_buffer_builder: &mut UnsafeCommandBufferBuilder, in release()
/aosp_15_r20/external/rust/android-crates-io/crates/vulkano/src/command_buffer/synced/
Dmod.rs163 unsafe fn send(&self, out: &mut UnsafeCommandBufferBuilder); in send()
Dbuilder.rs145 inner: UnsafeCommandBufferBuilder, in from_unsafe_cmd()