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/swiftshader/include/vulkan/
Dvulkan_structs.hpp25462 struct DispatchIndirectCommand struct
25467 …VULKAN_HPP_CONSTEXPR DispatchIndirectCommand(uint32_t x_ = {}, uint32_t y_ = {}, uint32_t z_ = {})… in DispatchIndirectCommand() function
25476 DispatchIndirectCommand(VkDispatchIndirectCommand const &rhs) VULKAN_HPP_NOEXCEPT in DispatchIndirectCommand() function
25486 *this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::DispatchIndirectCommand const *>(&rhs); in operator =()
25491 VULKAN_HPP_CONSTEXPR_14 DispatchIndirectCommand &setX(uint32_t x_) VULKAN_HPP_NOEXCEPT in setX()
25497 VULKAN_HPP_CONSTEXPR_14 DispatchIndirectCommand &setY(uint32_t y_) VULKAN_HPP_NOEXCEPT in setY()
25503 VULKAN_HPP_CONSTEXPR_14 DispatchIndirectCommand &setZ(uint32_t z_) VULKAN_HPP_NOEXCEPT in setZ()
25510 explicit operator VkDispatchIndirectCommand const &() const VULKAN_HPP_NOEXCEPT in operator VkDispatchIndirectCommand const&()
25515 explicit operator VkDispatchIndirectCommand &() VULKAN_HPP_NOEXCEPT in operator VkDispatchIndirectCommand&()
25526 reflect() const VULKAN_HPP_NOEXCEPT in reflect()
[all …]
/external/angle/third_party/vulkan-deps/vulkan-headers/src/include/vulkan/
Dvulkan_structs.hpp25395 struct DispatchIndirectCommand struct
25400 …VULKAN_HPP_CONSTEXPR DispatchIndirectCommand( uint32_t x_ = {}, uint32_t y_ = {}, uint32_t z_ = {}… in DispatchIndirectCommand() function
25409 DispatchIndirectCommand( VkDispatchIndirectCommand const & rhs ) VULKAN_HPP_NOEXCEPT in DispatchIndirectCommand() function
25419 *this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::DispatchIndirectCommand const *>( &rhs ); in operator =()
25424 VULKAN_HPP_CONSTEXPR_14 DispatchIndirectCommand & setX( uint32_t x_ ) VULKAN_HPP_NOEXCEPT in setX()
25430 VULKAN_HPP_CONSTEXPR_14 DispatchIndirectCommand & setY( uint32_t y_ ) VULKAN_HPP_NOEXCEPT in setY()
25436 VULKAN_HPP_CONSTEXPR_14 DispatchIndirectCommand & setZ( uint32_t z_ ) VULKAN_HPP_NOEXCEPT in setZ()
25443 explicit operator VkDispatchIndirectCommand const &() const VULKAN_HPP_NOEXCEPT in operator VkDispatchIndirectCommand const&()
25448 explicit operator VkDispatchIndirectCommand &() VULKAN_HPP_NOEXCEPT in operator VkDispatchIndirectCommand&()
25459 reflect() const VULKAN_HPP_NOEXCEPT in reflect()
[all …]
/external/vulkan-headers/include/vulkan/
Dvulkan_structs.hpp26354 struct DispatchIndirectCommand struct
26360DispatchIndirectCommand( uint32_t x_ = {}, uint32_t y_ = {}, uint32_t z_ = {} ) VULKAN_HPP_NOEXCEPT in DispatchIndirectCommand() function
26368 DispatchIndirectCommand( VkDispatchIndirectCommand const & rhs ) VULKAN_HPP_NOEXCEPT in DispatchIndirectCommand() function
26377 *this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::DispatchIndirectCommand const *>( &rhs ); in operator =()
26382 VULKAN_HPP_CONSTEXPR_14 DispatchIndirectCommand & setX( uint32_t x_ ) VULKAN_HPP_NOEXCEPT in setX()
26388 VULKAN_HPP_CONSTEXPR_14 DispatchIndirectCommand & setY( uint32_t y_ ) VULKAN_HPP_NOEXCEPT in setY()
26394 VULKAN_HPP_CONSTEXPR_14 DispatchIndirectCommand & setZ( uint32_t z_ ) VULKAN_HPP_NOEXCEPT in setZ()
26401 explicit operator VkDispatchIndirectCommand const &() const VULKAN_HPP_NOEXCEPT in operator VkDispatchIndirectCommand const&()
26406 explicit operator VkDispatchIndirectCommand &() VULKAN_HPP_NOEXCEPT in operator VkDispatchIndirectCommand&()
26417 reflect() const VULKAN_HPP_NOEXCEPT in reflect()
[all …]
/external/rust/crates/ash/src/vk/
Ddefinitions.rs9360 pub struct DispatchIndirectCommand { struct
9365 impl DispatchIndirectCommand { impl
9405 pub fn build(self) -> DispatchIndirectCommand { in build()