Home
last modified time | relevance | path

Searched defs:DispatchIndirectCommand (Results 1 – 7 of 7) sorted by relevance

/external/rust/crates/vulkano/src/command_buffer/
Dmod.rs184 pub struct DispatchIndirectCommand { struct
185 pub x: u32,
186 pub y: u32,
187 pub z: u32,
/external/rust/crates/vulkano/src/command_buffer/commands/
Dpipeline.rs126 indirect_buffer: Subbuffer<[DispatchIndirectCommand]>, in dispatch_indirect()
1716 indirect_buffer: Subbuffer<[DispatchIndirectCommand]>, in dispatch_indirect()
2341 pub unsafe fn dispatch_indirect(&mut self, buffer: &Subbuffer<[DispatchIndirectCommand]>) { in dispatch_indirect()
/external/rust/crates/vulkano/src/command_buffer/standard/builder/
Dpipeline.rs165 indirect_buffer: Subbuffer<[DispatchIndirectCommand]>, in dispatch_indirect()
211 indirect_buffer: Subbuffer<[DispatchIndirectCommand]>, in dispatch_indirect_unchecked()
/external/swiftshader/include/vulkan/
Dvulkan_structs.hpp30117 struct DispatchIndirectCommand struct
30122 …VULKAN_HPP_CONSTEXPR DispatchIndirectCommand( uint32_t x_ = {}, uint32_t y_ = {}, uint32_t z_ = {}… in DispatchIndirectCommand() function
30131 DispatchIndirectCommand( VkDispatchIndirectCommand const & rhs ) VULKAN_HPP_NOEXCEPT in DispatchIndirectCommand() function
30141 *this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::DispatchIndirectCommand const *>( &rhs ); in operator =()
30146 VULKAN_HPP_CONSTEXPR_14 DispatchIndirectCommand & setX( uint32_t x_ ) VULKAN_HPP_NOEXCEPT in setX()
30152 VULKAN_HPP_CONSTEXPR_14 DispatchIndirectCommand & setY( uint32_t y_ ) VULKAN_HPP_NOEXCEPT in setY()
30158 VULKAN_HPP_CONSTEXPR_14 DispatchIndirectCommand & setZ( uint32_t z_ ) VULKAN_HPP_NOEXCEPT in setZ()
30165 operator VkDispatchIndirectCommand const &() const VULKAN_HPP_NOEXCEPT in operator VkDispatchIndirectCommand const&()
30170 operator VkDispatchIndirectCommand &() VULKAN_HPP_NOEXCEPT in operator VkDispatchIndirectCommand&()
30181 reflect() const VULKAN_HPP_NOEXCEPT in reflect()
[all …]
/external/vulkan-headers/include/vulkan/
Dvulkan_structs.hpp31179 struct DispatchIndirectCommand struct
31184 …VULKAN_HPP_CONSTEXPR DispatchIndirectCommand( uint32_t x_ = {}, uint32_t y_ = {}, uint32_t z_ = {}… in DispatchIndirectCommand() function
31193 DispatchIndirectCommand( VkDispatchIndirectCommand const & rhs ) VULKAN_HPP_NOEXCEPT in DispatchIndirectCommand() function
31203 *this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::DispatchIndirectCommand const *>( &rhs ); in operator =()
31208 VULKAN_HPP_CONSTEXPR_14 DispatchIndirectCommand & setX( uint32_t x_ ) VULKAN_HPP_NOEXCEPT in setX()
31214 VULKAN_HPP_CONSTEXPR_14 DispatchIndirectCommand & setY( uint32_t y_ ) VULKAN_HPP_NOEXCEPT in setY()
31220 VULKAN_HPP_CONSTEXPR_14 DispatchIndirectCommand & setZ( uint32_t z_ ) VULKAN_HPP_NOEXCEPT in setZ()
31227 operator VkDispatchIndirectCommand const &() const VULKAN_HPP_NOEXCEPT in operator VkDispatchIndirectCommand const&()
31232 operator VkDispatchIndirectCommand &() VULKAN_HPP_NOEXCEPT in operator VkDispatchIndirectCommand&()
31243 reflect() const VULKAN_HPP_NOEXCEPT in reflect()
[all …]
/external/angle/third_party/vulkan-headers/src/include/vulkan/
Dvulkan_structs.hpp31004 struct DispatchIndirectCommand struct
31009 …VULKAN_HPP_CONSTEXPR DispatchIndirectCommand( uint32_t x_ = {}, uint32_t y_ = {}, uint32_t z_ = {}… in DispatchIndirectCommand() function
31018 DispatchIndirectCommand( VkDispatchIndirectCommand const & rhs ) VULKAN_HPP_NOEXCEPT in DispatchIndirectCommand() function
31028 *this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::DispatchIndirectCommand const *>( &rhs ); in operator =()
31033 VULKAN_HPP_CONSTEXPR_14 DispatchIndirectCommand & setX( uint32_t x_ ) VULKAN_HPP_NOEXCEPT in setX()
31039 VULKAN_HPP_CONSTEXPR_14 DispatchIndirectCommand & setY( uint32_t y_ ) VULKAN_HPP_NOEXCEPT in setY()
31045 VULKAN_HPP_CONSTEXPR_14 DispatchIndirectCommand & setZ( uint32_t z_ ) VULKAN_HPP_NOEXCEPT in setZ()
31052 operator VkDispatchIndirectCommand const &() const VULKAN_HPP_NOEXCEPT in operator VkDispatchIndirectCommand const&()
31057 operator VkDispatchIndirectCommand &() VULKAN_HPP_NOEXCEPT in operator VkDispatchIndirectCommand&()
31068 reflect() const VULKAN_HPP_NOEXCEPT in reflect()
[all …]
/external/rust/crates/ash/src/vk/
Ddefinitions.rs10467 pub struct DispatchIndirectCommand { struct
10472 impl DispatchIndirectCommand { argument
10515 pub fn build(self) -> DispatchIndirectCommand { in build()