Home
last modified time | relevance | path

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

/external/rust/crates/vulkano/src/command_buffer/
Dmod.rs164 pub struct DispatchIndirectCommand { struct
165 pub x: u32,
166 pub y: u32,
167 pub z: u32,
/external/vulkan-headers/include/vulkan/
Dvulkan_structs.hpp28544 struct DispatchIndirectCommand struct
28549 …VULKAN_HPP_CONSTEXPR DispatchIndirectCommand( uint32_t x_ = {}, uint32_t y_ = {}, uint32_t z_ = {}… in DispatchIndirectCommand() function
28558 DispatchIndirectCommand( VkDispatchIndirectCommand const & rhs ) VULKAN_HPP_NOEXCEPT in DispatchIndirectCommand() function
28568 *this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::DispatchIndirectCommand const *>( &rhs ); in operator =()
28573 VULKAN_HPP_CONSTEXPR_14 DispatchIndirectCommand & setX( uint32_t x_ ) VULKAN_HPP_NOEXCEPT in setX()
28579 VULKAN_HPP_CONSTEXPR_14 DispatchIndirectCommand & setY( uint32_t y_ ) VULKAN_HPP_NOEXCEPT in setY()
28585 VULKAN_HPP_CONSTEXPR_14 DispatchIndirectCommand & setZ( uint32_t z_ ) VULKAN_HPP_NOEXCEPT in setZ()
28592 operator VkDispatchIndirectCommand const &() const VULKAN_HPP_NOEXCEPT in operator VkDispatchIndirectCommand const&()
28597 operator VkDispatchIndirectCommand &() VULKAN_HPP_NOEXCEPT in operator VkDispatchIndirectCommand&()
28608 reflect() const VULKAN_HPP_NOEXCEPT in reflect()
[all …]
/external/swiftshader/include/vulkan/
Dvulkan_structs.hpp26207 struct DispatchIndirectCommand struct
26215 VULKAN_HPP_CONSTEXPR DispatchIndirectCommand(uint32_t x_ = {}, uint32_t y_ = {}, uint32_t z_ = {}) … in DispatchIndirectCommand() function
26221 DispatchIndirectCommand( VkDispatchIndirectCommand const & rhs ) VULKAN_HPP_NOEXCEPT in DispatchIndirectCommand() function
26231 *this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::DispatchIndirectCommand const *>( &rhs ); in operator =()
26236 VULKAN_HPP_CONSTEXPR_14 DispatchIndirectCommand & setX( uint32_t x_ ) VULKAN_HPP_NOEXCEPT in setX()
26242 VULKAN_HPP_CONSTEXPR_14 DispatchIndirectCommand & setY( uint32_t y_ ) VULKAN_HPP_NOEXCEPT in setY()
26248 VULKAN_HPP_CONSTEXPR_14 DispatchIndirectCommand & setZ( uint32_t z_ ) VULKAN_HPP_NOEXCEPT in setZ()
26256 operator VkDispatchIndirectCommand const &() const VULKAN_HPP_NOEXCEPT in operator VkDispatchIndirectCommand const&()
26261 operator VkDispatchIndirectCommand &() VULKAN_HPP_NOEXCEPT in operator VkDispatchIndirectCommand&()
26272 reflect() const VULKAN_HPP_NOEXCEPT in reflect()
[all …]
/external/angle/third_party/vulkan-deps/vulkan-headers/src/include/vulkan/
Dvulkan_structs.hpp29413 struct DispatchIndirectCommand struct
29418 …VULKAN_HPP_CONSTEXPR DispatchIndirectCommand( uint32_t x_ = {}, uint32_t y_ = {}, uint32_t z_ = {}… in DispatchIndirectCommand() function
29427 DispatchIndirectCommand( VkDispatchIndirectCommand const & rhs ) VULKAN_HPP_NOEXCEPT in DispatchIndirectCommand() function
29437 *this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::DispatchIndirectCommand const *>( &rhs ); in operator =()
29442 VULKAN_HPP_CONSTEXPR_14 DispatchIndirectCommand & setX( uint32_t x_ ) VULKAN_HPP_NOEXCEPT in setX()
29448 VULKAN_HPP_CONSTEXPR_14 DispatchIndirectCommand & setY( uint32_t y_ ) VULKAN_HPP_NOEXCEPT in setY()
29454 VULKAN_HPP_CONSTEXPR_14 DispatchIndirectCommand & setZ( uint32_t z_ ) VULKAN_HPP_NOEXCEPT in setZ()
29461 operator VkDispatchIndirectCommand const &() const VULKAN_HPP_NOEXCEPT in operator VkDispatchIndirectCommand const&()
29466 operator VkDispatchIndirectCommand &() VULKAN_HPP_NOEXCEPT in operator VkDispatchIndirectCommand&()
29477 reflect() const VULKAN_HPP_NOEXCEPT in reflect()
[all …]
/external/rust/crates/ash/src/vk/
Ddefinitions.rs9360 pub struct DispatchIndirectCommand { struct
9365 impl DispatchIndirectCommand { argument
9405 pub fn build(self) -> DispatchIndirectCommand { in build()