SDL  2.0
VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR Struct Reference

#include <vulkan.hpp>

+ Collaboration diagram for VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR:

Public Member Functions

 SwapchainCreateInfoKHR (SwapchainCreateFlagsKHR flags_=SwapchainCreateFlagsKHR(), SurfaceKHR surface_=SurfaceKHR(), uint32_t minImageCount_=0, Format imageFormat_=Format::eUndefined, ColorSpaceKHR imageColorSpace_=ColorSpaceKHR::eSrgbNonlinear, Extent2D imageExtent_=Extent2D(), uint32_t imageArrayLayers_=0, ImageUsageFlags imageUsage_=ImageUsageFlags(), SharingMode imageSharingMode_=SharingMode::eExclusive, uint32_t queueFamilyIndexCount_=0, const uint32_t *pQueueFamilyIndices_=nullptr, SurfaceTransformFlagBitsKHR preTransform_=SurfaceTransformFlagBitsKHR::eIdentity, CompositeAlphaFlagBitsKHR compositeAlpha_=CompositeAlphaFlagBitsKHR::eOpaque, PresentModeKHR presentMode_=PresentModeKHR::eImmediate, Bool32 clipped_=0, SwapchainKHR oldSwapchain_=SwapchainKHR())
 
 SwapchainCreateInfoKHR (VkSwapchainCreateInfoKHR const &rhs)
 
SwapchainCreateInfoKHRoperator= (VkSwapchainCreateInfoKHR const &rhs)
 
SwapchainCreateInfoKHRsetPNext (const void *pNext_)
 
SwapchainCreateInfoKHRsetFlags (SwapchainCreateFlagsKHR flags_)
 
SwapchainCreateInfoKHRsetSurface (SurfaceKHR surface_)
 
SwapchainCreateInfoKHRsetMinImageCount (uint32_t minImageCount_)
 
SwapchainCreateInfoKHRsetImageFormat (Format imageFormat_)
 
SwapchainCreateInfoKHRsetImageColorSpace (ColorSpaceKHR imageColorSpace_)
 
SwapchainCreateInfoKHRsetImageExtent (Extent2D imageExtent_)
 
SwapchainCreateInfoKHRsetImageArrayLayers (uint32_t imageArrayLayers_)
 
SwapchainCreateInfoKHRsetImageUsage (ImageUsageFlags imageUsage_)
 
SwapchainCreateInfoKHRsetImageSharingMode (SharingMode imageSharingMode_)
 
SwapchainCreateInfoKHRsetQueueFamilyIndexCount (uint32_t queueFamilyIndexCount_)
 
SwapchainCreateInfoKHRsetPQueueFamilyIndices (const uint32_t *pQueueFamilyIndices_)
 
SwapchainCreateInfoKHRsetPreTransform (SurfaceTransformFlagBitsKHR preTransform_)
 
SwapchainCreateInfoKHRsetCompositeAlpha (CompositeAlphaFlagBitsKHR compositeAlpha_)
 
SwapchainCreateInfoKHRsetPresentMode (PresentModeKHR presentMode_)
 
SwapchainCreateInfoKHRsetClipped (Bool32 clipped_)
 
SwapchainCreateInfoKHRsetOldSwapchain (SwapchainKHR oldSwapchain_)
 
 operator VkSwapchainCreateInfoKHR const & () const
 
 operator VkSwapchainCreateInfoKHR & ()
 
bool operator== (SwapchainCreateInfoKHR const &rhs) const
 
bool operator!= (SwapchainCreateInfoKHR const &rhs) const
 

Data Fields

const voidpNext = nullptr
 
SwapchainCreateFlagsKHR flags
 
SurfaceKHR surface
 
uint32_t minImageCount
 
Format imageFormat
 
ColorSpaceKHR imageColorSpace
 
Extent2D imageExtent
 
uint32_t imageArrayLayers
 
ImageUsageFlags imageUsage
 
SharingMode imageSharingMode
 
uint32_t queueFamilyIndexCount
 
const uint32_tpQueueFamilyIndices
 
SurfaceTransformFlagBitsKHR preTransform
 
CompositeAlphaFlagBitsKHR compositeAlpha
 
PresentModeKHR presentMode
 
Bool32 clipped
 
SwapchainKHR oldSwapchain
 

Private Attributes

StructureType sType = StructureType::eSwapchainCreateInfoKHR
 

Detailed Description

Definition at line 34285 of file vulkan.hpp.

Constructor & Destructor Documentation

◆ SwapchainCreateInfoKHR() [1/2]

VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::SwapchainCreateInfoKHR ( SwapchainCreateFlagsKHR  flags_ = SwapchainCreateFlagsKHR(),
SurfaceKHR  surface_ = SurfaceKHR(),
uint32_t  minImageCount_ = 0,
Format  imageFormat_ = Format::eUndefined,
ColorSpaceKHR  imageColorSpace_ = ColorSpaceKHR::eSrgbNonlinear,
Extent2D  imageExtent_ = Extent2D(),
uint32_t  imageArrayLayers_ = 0,
ImageUsageFlags  imageUsage_ = ImageUsageFlags(),
SharingMode  imageSharingMode_ = SharingMode::eExclusive,
uint32_t  queueFamilyIndexCount_ = 0,
const uint32_t pQueueFamilyIndices_ = nullptr,
SurfaceTransformFlagBitsKHR  preTransform_ = SurfaceTransformFlagBitsKHR::eIdentity,
CompositeAlphaFlagBitsKHR  compositeAlpha_ = CompositeAlphaFlagBitsKHR::eOpaque,
PresentModeKHR  presentMode_ = PresentModeKHR::eImmediate,
Bool32  clipped_ = 0,
SwapchainKHR  oldSwapchain_ = SwapchainKHR() 
)
inline

Definition at line 34287 of file vulkan.hpp.

34303  : flags( flags_ )
34304  , surface( surface_ )
34305  , minImageCount( minImageCount_ )
34306  , imageFormat( imageFormat_ )
34307  , imageColorSpace( imageColorSpace_ )
34308  , imageExtent( imageExtent_ )
34309  , imageArrayLayers( imageArrayLayers_ )
34310  , imageUsage( imageUsage_ )
34311  , imageSharingMode( imageSharingMode_ )
34312  , queueFamilyIndexCount( queueFamilyIndexCount_ )
34313  , pQueueFamilyIndices( pQueueFamilyIndices_ )
34314  , preTransform( preTransform_ )
34315  , compositeAlpha( compositeAlpha_ )
34316  , presentMode( presentMode_ )
34317  , clipped( clipped_ )
34318  , oldSwapchain( oldSwapchain_ )
34319  {
34320  }

◆ SwapchainCreateInfoKHR() [2/2]

VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::SwapchainCreateInfoKHR ( VkSwapchainCreateInfoKHR const &  rhs)
inline

Definition at line 34322 of file vulkan.hpp.

34323  {
34324  memcpy( this, &rhs, sizeof( SwapchainCreateInfoKHR ) );
34325  }

References memcpy.

Member Function Documentation

◆ operator VkSwapchainCreateInfoKHR &()

VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::operator VkSwapchainCreateInfoKHR & ( )
inline

Definition at line 34439 of file vulkan.hpp.

34440  {
34441  return *reinterpret_cast<VkSwapchainCreateInfoKHR*>(this);
34442  }

◆ operator VkSwapchainCreateInfoKHR const &()

VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::operator VkSwapchainCreateInfoKHR const & ( ) const
inline

Definition at line 34434 of file vulkan.hpp.

34435  {
34436  return *reinterpret_cast<const VkSwapchainCreateInfoKHR*>(this);
34437  }

◆ operator!=()

bool VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::operator!= ( SwapchainCreateInfoKHR const &  rhs) const
inline

Definition at line 34466 of file vulkan.hpp.

34467  {
34468  return !operator==( rhs );
34469  }

References operator==().

◆ operator=()

SwapchainCreateInfoKHR& VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::operator= ( VkSwapchainCreateInfoKHR const &  rhs)
inline

Definition at line 34327 of file vulkan.hpp.

34328  {
34329  memcpy( this, &rhs, sizeof( SwapchainCreateInfoKHR ) );
34330  return *this;
34331  }

References memcpy.

◆ operator==()

bool VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::operator== ( SwapchainCreateInfoKHR const &  rhs) const
inline

Definition at line 34444 of file vulkan.hpp.

34445  {
34446  return ( sType == rhs.sType )
34447  && ( pNext == rhs.pNext )
34448  && ( flags == rhs.flags )
34449  && ( surface == rhs.surface )
34450  && ( minImageCount == rhs.minImageCount )
34451  && ( imageFormat == rhs.imageFormat )
34452  && ( imageColorSpace == rhs.imageColorSpace )
34453  && ( imageExtent == rhs.imageExtent )
34454  && ( imageArrayLayers == rhs.imageArrayLayers )
34455  && ( imageUsage == rhs.imageUsage )
34456  && ( imageSharingMode == rhs.imageSharingMode )
34457  && ( queueFamilyIndexCount == rhs.queueFamilyIndexCount )
34458  && ( pQueueFamilyIndices == rhs.pQueueFamilyIndices )
34459  && ( preTransform == rhs.preTransform )
34460  && ( compositeAlpha == rhs.compositeAlpha )
34461  && ( presentMode == rhs.presentMode )
34462  && ( clipped == rhs.clipped )
34463  && ( oldSwapchain == rhs.oldSwapchain );
34464  }

References clipped, compositeAlpha, flags, imageArrayLayers, imageColorSpace, imageExtent, imageFormat, imageSharingMode, imageUsage, minImageCount, oldSwapchain, pNext, pQueueFamilyIndices, presentMode, preTransform, queueFamilyIndexCount, sType, and surface.

Referenced by operator!=().

◆ setClipped()

SwapchainCreateInfoKHR& VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::setClipped ( Bool32  clipped_)
inline

Definition at line 34422 of file vulkan.hpp.

34423  {
34424  clipped = clipped_;
34425  return *this;
34426  }

References clipped.

◆ setCompositeAlpha()

SwapchainCreateInfoKHR& VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::setCompositeAlpha ( CompositeAlphaFlagBitsKHR  compositeAlpha_)
inline

Definition at line 34410 of file vulkan.hpp.

34411  {
34412  compositeAlpha = compositeAlpha_;
34413  return *this;
34414  }

References compositeAlpha.

◆ setFlags()

SwapchainCreateInfoKHR& VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::setFlags ( SwapchainCreateFlagsKHR  flags_)
inline

Definition at line 34338 of file vulkan.hpp.

34339  {
34340  flags = flags_;
34341  return *this;
34342  }

References flags_.

◆ setImageArrayLayers()

SwapchainCreateInfoKHR& VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::setImageArrayLayers ( uint32_t  imageArrayLayers_)
inline

Definition at line 34374 of file vulkan.hpp.

34375  {
34376  imageArrayLayers = imageArrayLayers_;
34377  return *this;
34378  }

References imageArrayLayers.

◆ setImageColorSpace()

SwapchainCreateInfoKHR& VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::setImageColorSpace ( ColorSpaceKHR  imageColorSpace_)
inline

Definition at line 34362 of file vulkan.hpp.

34363  {
34364  imageColorSpace = imageColorSpace_;
34365  return *this;
34366  }

References imageColorSpace.

◆ setImageExtent()

SwapchainCreateInfoKHR& VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::setImageExtent ( Extent2D  imageExtent_)
inline

Definition at line 34368 of file vulkan.hpp.

34369  {
34370  imageExtent = imageExtent_;
34371  return *this;
34372  }

References imageExtent.

◆ setImageFormat()

SwapchainCreateInfoKHR& VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::setImageFormat ( Format  imageFormat_)
inline

Definition at line 34356 of file vulkan.hpp.

34357  {
34358  imageFormat = imageFormat_;
34359  return *this;
34360  }

References imageFormat.

◆ setImageSharingMode()

SwapchainCreateInfoKHR& VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::setImageSharingMode ( SharingMode  imageSharingMode_)
inline

Definition at line 34386 of file vulkan.hpp.

34387  {
34388  imageSharingMode = imageSharingMode_;
34389  return *this;
34390  }

References imageSharingMode.

◆ setImageUsage()

SwapchainCreateInfoKHR& VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::setImageUsage ( ImageUsageFlags  imageUsage_)
inline

Definition at line 34380 of file vulkan.hpp.

34381  {
34382  imageUsage = imageUsage_;
34383  return *this;
34384  }

References imageUsage.

◆ setMinImageCount()

SwapchainCreateInfoKHR& VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::setMinImageCount ( uint32_t  minImageCount_)
inline

Definition at line 34350 of file vulkan.hpp.

34351  {
34352  minImageCount = minImageCount_;
34353  return *this;
34354  }

References minImageCount.

◆ setOldSwapchain()

SwapchainCreateInfoKHR& VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::setOldSwapchain ( SwapchainKHR  oldSwapchain_)
inline

Definition at line 34428 of file vulkan.hpp.

34429  {
34430  oldSwapchain = oldSwapchain_;
34431  return *this;
34432  }

References oldSwapchain.

◆ setPNext()

SwapchainCreateInfoKHR& VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::setPNext ( const void pNext_)
inline

Definition at line 34332 of file vulkan.hpp.

34333  {
34334  pNext = pNext_;
34335  return *this;
34336  }

References pNext.

◆ setPQueueFamilyIndices()

SwapchainCreateInfoKHR& VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::setPQueueFamilyIndices ( const uint32_t pQueueFamilyIndices_)
inline

Definition at line 34398 of file vulkan.hpp.

34399  {
34400  pQueueFamilyIndices = pQueueFamilyIndices_;
34401  return *this;
34402  }

References pQueueFamilyIndices.

◆ setPresentMode()

SwapchainCreateInfoKHR& VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::setPresentMode ( PresentModeKHR  presentMode_)
inline

Definition at line 34416 of file vulkan.hpp.

34417  {
34418  presentMode = presentMode_;
34419  return *this;
34420  }

References presentMode.

◆ setPreTransform()

SwapchainCreateInfoKHR& VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::setPreTransform ( SurfaceTransformFlagBitsKHR  preTransform_)
inline

Definition at line 34404 of file vulkan.hpp.

34405  {
34406  preTransform = preTransform_;
34407  return *this;
34408  }

References preTransform.

◆ setQueueFamilyIndexCount()

SwapchainCreateInfoKHR& VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::setQueueFamilyIndexCount ( uint32_t  queueFamilyIndexCount_)
inline

Definition at line 34392 of file vulkan.hpp.

34393  {
34394  queueFamilyIndexCount = queueFamilyIndexCount_;
34395  return *this;
34396  }

References queueFamilyIndexCount.

◆ setSurface()

SwapchainCreateInfoKHR& VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::setSurface ( SurfaceKHR  surface_)
inline

Definition at line 34344 of file vulkan.hpp.

34345  {
34346  surface = surface_;
34347  return *this;
34348  }

Field Documentation

◆ clipped

Bool32 VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::clipped

Definition at line 34490 of file vulkan.hpp.

Referenced by operator==(), and setClipped().

◆ compositeAlpha

CompositeAlphaFlagBitsKHR VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::compositeAlpha

Definition at line 34488 of file vulkan.hpp.

Referenced by operator==(), and setCompositeAlpha().

◆ flags

SwapchainCreateFlagsKHR VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::flags

Definition at line 34476 of file vulkan.hpp.

Referenced by operator==().

◆ imageArrayLayers

uint32_t VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::imageArrayLayers

Definition at line 34482 of file vulkan.hpp.

Referenced by operator==(), and setImageArrayLayers().

◆ imageColorSpace

ColorSpaceKHR VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::imageColorSpace

Definition at line 34480 of file vulkan.hpp.

Referenced by operator==(), and setImageColorSpace().

◆ imageExtent

Extent2D VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::imageExtent

Definition at line 34481 of file vulkan.hpp.

Referenced by operator==(), and setImageExtent().

◆ imageFormat

Format VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::imageFormat

Definition at line 34479 of file vulkan.hpp.

Referenced by operator==(), and setImageFormat().

◆ imageSharingMode

SharingMode VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::imageSharingMode

Definition at line 34484 of file vulkan.hpp.

Referenced by operator==(), and setImageSharingMode().

◆ imageUsage

ImageUsageFlags VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::imageUsage

Definition at line 34483 of file vulkan.hpp.

Referenced by operator==(), and setImageUsage().

◆ minImageCount

uint32_t VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::minImageCount

Definition at line 34478 of file vulkan.hpp.

Referenced by operator==(), and setMinImageCount().

◆ oldSwapchain

SwapchainKHR VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::oldSwapchain

Definition at line 34491 of file vulkan.hpp.

Referenced by operator==(), and setOldSwapchain().

◆ pNext

const void* VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::pNext = nullptr

Definition at line 34475 of file vulkan.hpp.

Referenced by operator==(), and setPNext().

◆ pQueueFamilyIndices

const uint32_t* VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::pQueueFamilyIndices

Definition at line 34486 of file vulkan.hpp.

Referenced by operator==(), and setPQueueFamilyIndices().

◆ presentMode

PresentModeKHR VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::presentMode

Definition at line 34489 of file vulkan.hpp.

Referenced by operator==(), and setPresentMode().

◆ preTransform

SurfaceTransformFlagBitsKHR VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::preTransform

Definition at line 34487 of file vulkan.hpp.

Referenced by operator==(), and setPreTransform().

◆ queueFamilyIndexCount

uint32_t VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::queueFamilyIndexCount

Definition at line 34485 of file vulkan.hpp.

Referenced by operator==(), and setQueueFamilyIndexCount().

◆ sType

StructureType VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::sType = StructureType::eSwapchainCreateInfoKHR
private

Definition at line 34472 of file vulkan.hpp.

Referenced by operator==().

◆ surface

SurfaceKHR VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::surface

Definition at line 34477 of file vulkan.hpp.

Referenced by operator==().


The documentation for this struct was generated from the following file:
VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::imageSharingMode
SharingMode imageSharingMode
Definition: vulkan.hpp:34484
VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::imageExtent
Extent2D imageExtent
Definition: vulkan.hpp:34481
VkSwapchainCreateInfoKHR
Definition: vulkan_core.h:4810
surface
EGLSurface surface
Definition: eglext.h:248
VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::sType
StructureType sType
Definition: vulkan.hpp:34472
VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::preTransform
SurfaceTransformFlagBitsKHR preTransform
Definition: vulkan.hpp:34487
VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::operator==
bool operator==(SwapchainCreateInfoKHR const &rhs) const
Definition: vulkan.hpp:34444
memcpy
#define memcpy
Definition: SDL_malloc.c:630
VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::minImageCount
uint32_t minImageCount
Definition: vulkan.hpp:34478
VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::queueFamilyIndexCount
uint32_t queueFamilyIndexCount
Definition: vulkan.hpp:34485
VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::oldSwapchain
SwapchainKHR oldSwapchain
Definition: vulkan.hpp:34491
VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::SwapchainCreateInfoKHR
SwapchainCreateInfoKHR(SwapchainCreateFlagsKHR flags_=SwapchainCreateFlagsKHR(), SurfaceKHR surface_=SurfaceKHR(), uint32_t minImageCount_=0, Format imageFormat_=Format::eUndefined, ColorSpaceKHR imageColorSpace_=ColorSpaceKHR::eSrgbNonlinear, Extent2D imageExtent_=Extent2D(), uint32_t imageArrayLayers_=0, ImageUsageFlags imageUsage_=ImageUsageFlags(), SharingMode imageSharingMode_=SharingMode::eExclusive, uint32_t queueFamilyIndexCount_=0, const uint32_t *pQueueFamilyIndices_=nullptr, SurfaceTransformFlagBitsKHR preTransform_=SurfaceTransformFlagBitsKHR::eIdentity, CompositeAlphaFlagBitsKHR compositeAlpha_=CompositeAlphaFlagBitsKHR::eOpaque, PresentModeKHR presentMode_=PresentModeKHR::eImmediate, Bool32 clipped_=0, SwapchainKHR oldSwapchain_=SwapchainKHR())
Definition: vulkan.hpp:34287
VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::imageColorSpace
ColorSpaceKHR imageColorSpace
Definition: vulkan.hpp:34480
VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::clipped
Bool32 clipped
Definition: vulkan.hpp:34490
VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::imageUsage
ImageUsageFlags imageUsage
Definition: vulkan.hpp:34483
VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::flags
SwapchainCreateFlagsKHR flags
Definition: vulkan.hpp:34476
VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::imageFormat
Format imageFormat
Definition: vulkan.hpp:34479
VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::imageArrayLayers
uint32_t imageArrayLayers
Definition: vulkan.hpp:34482
VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::surface
SurfaceKHR surface
Definition: vulkan.hpp:34477
flags_
set set set set set set set set set set set set set set set set set set set set *set set set macro pixldst op &r &cond WK op &r &cond WK op &r &cond WK else op &m &cond &ia op &r &cond WK else op &m &cond &ia elseif elseif else error unsupported base if elseif elseif else error unsupported unaligned pixldst unaligned endm macro pixst base base else pixldst base endif endm macro PF base if bpp PF set rept prefetch_distance PF set OFFSET endr endif endm macro preload_leading_step2 base if bpp ifc DST PF PF else if bpp lsl PF PF lsl PF PF lsl PF PF PF else PF lsl PF lsl PF lsl PF endif SIZE macro preload_middle scratch_holds_offset if bpp if else PF PF endif endif endif endm macro preload_trailing base if bpp if bpp *pix_per_block PF PF lsl PF PF PF PF PF else PF lsl PF lsl PF PF PF PF PF base if bpp if narrow_case &&bpp<=dst_w_bpp) PF bic, WK0, base, #31 PF pld,[WK0] PF add, WK1, base, X, LSL #bpp_shift PF sub, WK1, WK1, #1 PF bic, WK1, WK1, #31 PF cmp, WK1, WK0 PF beq, 90f PF pld,[WK1]90:.else PF bic, WK0, base, #31 PF pld,[WK0] PF add, WK1, base, X, lsl #bpp_shift PF sub, WK1, WK1, #1 PF bic, WK1, WK1, #31 PF cmp, WK1, WK0 PF beq, 92f91:PF add, WK0, WK0, #32 PF cmp, WK0, WK1 PF pld,[WK0] PF bne, 91b92:.endif .endif.endm.macro conditional_process1_helper cond, process_head, process_tail, numbytes, firstreg, unaligned_src, unaligned_mask, decrementx process_head cond, numbytes, firstreg, unaligned_src, unaligned_mask, 0 .if decrementx sub &cond X, X, #8 *numbytes/dst_w_bpp .endif process_tail cond, numbytes, firstreg .if !((flags) &FLAG_PROCESS_DOES_STORE) pixst cond, numbytes, firstreg, DST .endif.endm.macro conditional_process1 cond, process_head, process_tail, numbytes, firstreg, unaligned_src, unaligned_mask, decrementx .if(flags) &FLAG_BRANCH_OVER .ifc cond, mi bpl 100f .endif .ifc cond, cs bcc 100f .endif .ifc cond, ne beq 100f .endif conditional_process1_helper, process_head, process_tail, numbytes, firstreg, unaligned_src, unaligned_mask, decrementx100:.else conditional_process1_helper cond, process_head, process_tail, numbytes, firstreg, unaligned_src, unaligned_mask, decrementx .endif.endm.macro conditional_process2 test, cond1, cond2, process_head, process_tail, numbytes1, numbytes2, firstreg1, firstreg2, unaligned_src, unaligned_mask, decrementx .if(flags) &(FLAG_DST_READWRITE|FLAG_BRANCH_OVER|FLAG_PROCESS_CORRUPTS_PSR|FLAG_PROCESS_DOES_STORE) test conditional_process1 cond1, process_head, process_tail, numbytes1, firstreg1, unaligned_src, unaligned_mask, decrementx .if(flags) &FLAG_PROCESS_CORRUPTS_PSR test .endif conditional_process1 cond2, process_head, process_tail, numbytes2, firstreg2, unaligned_src, unaligned_mask, decrementx .else test process_head cond1, numbytes1, firstreg1, unaligned_src, unaligned_mask, 0 process_head cond2, numbytes2, firstreg2, unaligned_src, unaligned_mask, 0 .if decrementx sub &cond1 X, X, #8 *numbytes1/dst_w_bpp sub &cond2 X, X, #8 *numbytes2/dst_w_bpp .endif process_tail cond1, numbytes1, firstreg1 process_tail cond2, numbytes2, firstreg2 pixst cond1, numbytes1, firstreg1, DST pixst cond2, numbytes2, firstreg2, DST .endif.endm.macro test_bits_1_0_ptr .if(flags) &FLAG_PROCESS_CORRUPTS_WK0 movs SCRATCH, X, lsl #32-1 .else movs SCRATCH, WK0, lsl #32-1 .endif.endm.macro test_bits_3_2_ptr .if(flags) &FLAG_PROCESS_CORRUPTS_WK0 movs SCRATCH, X, lsl #32-3 .else movs SCRATCH, WK0, lsl #32-3 .endif.endm.macro leading_15bytes process_head, process_tail .set DECREMENT_X, 1 .if(flags) &FLAG_PROCESS_CORRUPTS_WK0 .set DECREMENT_X, 0 sub X, X, WK0, lsr #dst_bpp_shift str X,[sp, #LINE_SAVED_REG_COUNT *4] mov X, WK0 .endif .if dst_w_bpp==8 conditional_process2 test_bits_1_0_ptr, mi, cs, process_head, process_tail, 1, 2, 1, 2, 1, 1, DECREMENT_X .elseif dst_w_bpp==16 test_bits_1_0_ptr conditional_process1 cs, process_head, process_tail, 2, 2, 1, 1, DECREMENT_X .endif conditional_process2 test_bits_3_2_ptr, mi, cs, process_head, process_tail, 4, 8, 1, 2, 1, 1, DECREMENT_X .if(flags) &FLAG_PROCESS_CORRUPTS_WK0 ldr X,[sp, #LINE_SAVED_REG_COUNT *4] .endif.endm.macro test_bits_3_2_pix movs SCRATCH, X, lsl #dst_bpp_shift+32-3.endm.macro test_bits_1_0_pix .if dst_w_bpp==8 movs SCRATCH, X, lsl #dst_bpp_shift+32-1 .else movs SCRATCH, X, lsr #1 .endif.endm.macro trailing_15bytes process_head, process_tail, unaligned_src, unaligned_mask conditional_process2 test_bits_3_2_pix, cs, mi, process_head, process_tail, 8, 4, 0, 2, unaligned_src, unaligned_mask, 0 .if dst_w_bpp==16 test_bits_1_0_pix conditional_process1 cs, process_head, process_tail, 2, 0, unaligned_src, unaligned_mask, 0 .elseif dst_w_bpp==8 conditional_process2 test_bits_1_0_pix, cs, mi, process_head, process_tail, 2, 1, 0, 1, unaligned_src, unaligned_mask, 0 .endif.endm.macro wide_case_inner_loop process_head, process_tail, unaligned_src, unaligned_mask, dst_alignment110:.set SUBBLOCK, 0 .rept pix_per_block *dst_w_bpp/128 process_head, 16, 0, unaligned_src, unaligned_mask, 1 .if(src_bpp > 0) &&(mask_bpp==0) &&((flags) &FLAG_PROCESS_PRESERVES_SCRATCH) preload_middle src_bpp, SRC, 1 .elseif(src_bpp==0) &&(mask_bpp > 0) &&((flags) &FLAG_PROCESS_PRESERVES_SCRATCH) preload_middle mask_bpp, MASK, 1 .else preload_middle src_bpp, SRC, 0 preload_middle mask_bpp, MASK, 0 .endif .if(dst_r_bpp > 0) &&((SUBBLOCK % 2)==0) &&(((flags) &FLAG_NO_PRELOAD_DST)==0) PF pld,[DST, #32 *prefetch_distance - dst_alignment] .endif process_tail, 16, 0 .if !((flags) &FLAG_PROCESS_DOES_STORE) pixst, 16, 0, DST .endif .set SUBBLOCK, SUBBLOCK+1 .endr subs X, X, #pix_per_block bhs 110b.endm.macro wide_case_inner_loop_and_trailing_pixels process_head, process_tail, process_inner_loop, exit_label, unaligned_src, unaligned_mask .if dst_r_bpp > tst bne process_inner_loop DST_PRELOAD_BIAS endif preload_trailing SRC preload_trailing MASK DST endif add medium_case_inner_loop_and_trailing_pixels unaligned_mask endm macro medium_case_inner_loop_and_trailing_pixels DST endif subs bhs tst beq exit_label trailing_15bytes unaligned_mask endm macro narrow_case_inner_loop_and_trailing_pixels unaligned_mask tst conditional_process1 trailing_15bytes unaligned_mask endm macro switch_on_alignment exit_label if bne endif if bne endif action if endif if bne endif action if endif endif endm macro end_of_line last_one if SINGLE_SCANLINE ifc b endif else if vars_spilled word LINE_SAVED_REGS endif subs if vars_spilled endif endif add STRIDE_D if src_bpp add STRIDE_S endif if mask_bpp add STRIDE_M endif if restore_x mov ORIG_W endif bhs loop_label ifc if vars_spilled b else b endif else flags_
Definition: pixman-arm-simd-asm.h:590
VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::presentMode
PresentModeKHR presentMode
Definition: vulkan.hpp:34489
flags
GLbitfield flags
Definition: SDL_opengl_glext.h:1483
VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::pQueueFamilyIndices
const uint32_t * pQueueFamilyIndices
Definition: vulkan.hpp:34486
VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::pNext
const void * pNext
Definition: vulkan.hpp:34475
VULKAN_HPP_NAMESPACE::SwapchainCreateInfoKHR::compositeAlpha
CompositeAlphaFlagBitsKHR compositeAlpha
Definition: vulkan.hpp:34488