SDL  2.0
VULKAN_HPP_NAMESPACE::PipelineDepthStencilStateCreateInfo Struct Reference

#include <vulkan.hpp>

+ Collaboration diagram for VULKAN_HPP_NAMESPACE::PipelineDepthStencilStateCreateInfo:

Public Member Functions

 PipelineDepthStencilStateCreateInfo (PipelineDepthStencilStateCreateFlags flags_=PipelineDepthStencilStateCreateFlags(), Bool32 depthTestEnable_=0, Bool32 depthWriteEnable_=0, CompareOp depthCompareOp_=CompareOp::eNever, Bool32 depthBoundsTestEnable_=0, Bool32 stencilTestEnable_=0, StencilOpState front_=StencilOpState(), StencilOpState back_=StencilOpState(), float minDepthBounds_=0, float maxDepthBounds_=0)
 
 PipelineDepthStencilStateCreateInfo (VkPipelineDepthStencilStateCreateInfo const &rhs)
 
PipelineDepthStencilStateCreateInfooperator= (VkPipelineDepthStencilStateCreateInfo const &rhs)
 
PipelineDepthStencilStateCreateInfosetPNext (const void *pNext_)
 
PipelineDepthStencilStateCreateInfosetFlags (PipelineDepthStencilStateCreateFlags flags_)
 
PipelineDepthStencilStateCreateInfosetDepthTestEnable (Bool32 depthTestEnable_)
 
PipelineDepthStencilStateCreateInfosetDepthWriteEnable (Bool32 depthWriteEnable_)
 
PipelineDepthStencilStateCreateInfosetDepthCompareOp (CompareOp depthCompareOp_)
 
PipelineDepthStencilStateCreateInfosetDepthBoundsTestEnable (Bool32 depthBoundsTestEnable_)
 
PipelineDepthStencilStateCreateInfosetStencilTestEnable (Bool32 stencilTestEnable_)
 
PipelineDepthStencilStateCreateInfosetFront (StencilOpState front_)
 
PipelineDepthStencilStateCreateInfosetBack (StencilOpState back_)
 
PipelineDepthStencilStateCreateInfosetMinDepthBounds (float minDepthBounds_)
 
PipelineDepthStencilStateCreateInfosetMaxDepthBounds (float maxDepthBounds_)
 
 operator VkPipelineDepthStencilStateCreateInfo const & () const
 
 operator VkPipelineDepthStencilStateCreateInfo & ()
 
bool operator== (PipelineDepthStencilStateCreateInfo const &rhs) const
 
bool operator!= (PipelineDepthStencilStateCreateInfo const &rhs) const
 

Data Fields

const voidpNext = nullptr
 
PipelineDepthStencilStateCreateFlags flags
 
Bool32 depthTestEnable
 
Bool32 depthWriteEnable
 
CompareOp depthCompareOp
 
Bool32 depthBoundsTestEnable
 
Bool32 stencilTestEnable
 
StencilOpState front
 
StencilOpState back
 
float minDepthBounds
 
float maxDepthBounds
 

Private Attributes

StructureType sType = StructureType::ePipelineDepthStencilStateCreateInfo
 

Detailed Description

Definition at line 10880 of file vulkan.hpp.

Constructor & Destructor Documentation

◆ PipelineDepthStencilStateCreateInfo() [1/2]

VULKAN_HPP_NAMESPACE::PipelineDepthStencilStateCreateInfo::PipelineDepthStencilStateCreateInfo ( PipelineDepthStencilStateCreateFlags  flags_ = PipelineDepthStencilStateCreateFlags(),
Bool32  depthTestEnable_ = 0,
Bool32  depthWriteEnable_ = 0,
CompareOp  depthCompareOp_ = CompareOp::eNever,
Bool32  depthBoundsTestEnable_ = 0,
Bool32  stencilTestEnable_ = 0,
StencilOpState  front_ = StencilOpState(),
StencilOpState  back_ = StencilOpState(),
float  minDepthBounds_ = 0,
float  maxDepthBounds_ = 0 
)
inline

Definition at line 10882 of file vulkan.hpp.

10892  : flags( flags_ )
10893  , depthTestEnable( depthTestEnable_ )
10894  , depthWriteEnable( depthWriteEnable_ )
10895  , depthCompareOp( depthCompareOp_ )
10896  , depthBoundsTestEnable( depthBoundsTestEnable_ )
10897  , stencilTestEnable( stencilTestEnable_ )
10898  , front( front_ )
10899  , back( back_ )
10900  , minDepthBounds( minDepthBounds_ )
10901  , maxDepthBounds( maxDepthBounds_ )
10902  {
10903  }

◆ PipelineDepthStencilStateCreateInfo() [2/2]

VULKAN_HPP_NAMESPACE::PipelineDepthStencilStateCreateInfo::PipelineDepthStencilStateCreateInfo ( VkPipelineDepthStencilStateCreateInfo const &  rhs)
inline

Definition at line 10905 of file vulkan.hpp.

10906  {
10907  memcpy( this, &rhs, sizeof( PipelineDepthStencilStateCreateInfo ) );
10908  }

References memcpy.

Member Function Documentation

◆ operator VkPipelineDepthStencilStateCreateInfo &()

VULKAN_HPP_NAMESPACE::PipelineDepthStencilStateCreateInfo::operator VkPipelineDepthStencilStateCreateInfo & ( )
inline

Definition at line 10986 of file vulkan.hpp.

10987  {
10988  return *reinterpret_cast<VkPipelineDepthStencilStateCreateInfo*>(this);
10989  }

◆ operator VkPipelineDepthStencilStateCreateInfo const &()

VULKAN_HPP_NAMESPACE::PipelineDepthStencilStateCreateInfo::operator VkPipelineDepthStencilStateCreateInfo const & ( ) const
inline

Definition at line 10981 of file vulkan.hpp.

10982  {
10983  return *reinterpret_cast<const VkPipelineDepthStencilStateCreateInfo*>(this);
10984  }

◆ operator!=()

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

Definition at line 11007 of file vulkan.hpp.

11008  {
11009  return !operator==( rhs );
11010  }

References operator==().

◆ operator=()

PipelineDepthStencilStateCreateInfo& VULKAN_HPP_NAMESPACE::PipelineDepthStencilStateCreateInfo::operator= ( VkPipelineDepthStencilStateCreateInfo const &  rhs)
inline

Definition at line 10910 of file vulkan.hpp.

10911  {
10912  memcpy( this, &rhs, sizeof( PipelineDepthStencilStateCreateInfo ) );
10913  return *this;
10914  }

References memcpy.

◆ operator==()

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

Definition at line 10991 of file vulkan.hpp.

10992  {
10993  return ( sType == rhs.sType )
10994  && ( pNext == rhs.pNext )
10995  && ( flags == rhs.flags )
10996  && ( depthTestEnable == rhs.depthTestEnable )
10997  && ( depthWriteEnable == rhs.depthWriteEnable )
10998  && ( depthCompareOp == rhs.depthCompareOp )
10999  && ( depthBoundsTestEnable == rhs.depthBoundsTestEnable )
11000  && ( stencilTestEnable == rhs.stencilTestEnable )
11001  && ( front == rhs.front )
11002  && ( back == rhs.back )
11003  && ( minDepthBounds == rhs.minDepthBounds )
11004  && ( maxDepthBounds == rhs.maxDepthBounds );
11005  }

References back, depthBoundsTestEnable, depthCompareOp, depthTestEnable, depthWriteEnable, flags, front, maxDepthBounds, minDepthBounds, pNext, stencilTestEnable, and sType.

Referenced by operator!=().

◆ setBack()

PipelineDepthStencilStateCreateInfo& VULKAN_HPP_NAMESPACE::PipelineDepthStencilStateCreateInfo::setBack ( StencilOpState  back_)
inline

Definition at line 10963 of file vulkan.hpp.

10964  {
10965  back = back_;
10966  return *this;
10967  }

References back.

◆ setDepthBoundsTestEnable()

PipelineDepthStencilStateCreateInfo& VULKAN_HPP_NAMESPACE::PipelineDepthStencilStateCreateInfo::setDepthBoundsTestEnable ( Bool32  depthBoundsTestEnable_)
inline

Definition at line 10945 of file vulkan.hpp.

10946  {
10947  depthBoundsTestEnable = depthBoundsTestEnable_;
10948  return *this;
10949  }

References depthBoundsTestEnable.

◆ setDepthCompareOp()

PipelineDepthStencilStateCreateInfo& VULKAN_HPP_NAMESPACE::PipelineDepthStencilStateCreateInfo::setDepthCompareOp ( CompareOp  depthCompareOp_)
inline

Definition at line 10939 of file vulkan.hpp.

10940  {
10941  depthCompareOp = depthCompareOp_;
10942  return *this;
10943  }

References depthCompareOp.

◆ setDepthTestEnable()

PipelineDepthStencilStateCreateInfo& VULKAN_HPP_NAMESPACE::PipelineDepthStencilStateCreateInfo::setDepthTestEnable ( Bool32  depthTestEnable_)
inline

Definition at line 10927 of file vulkan.hpp.

10928  {
10929  depthTestEnable = depthTestEnable_;
10930  return *this;
10931  }

References depthTestEnable.

◆ setDepthWriteEnable()

PipelineDepthStencilStateCreateInfo& VULKAN_HPP_NAMESPACE::PipelineDepthStencilStateCreateInfo::setDepthWriteEnable ( Bool32  depthWriteEnable_)
inline

Definition at line 10933 of file vulkan.hpp.

10934  {
10935  depthWriteEnable = depthWriteEnable_;
10936  return *this;
10937  }

References depthWriteEnable.

◆ setFlags()

PipelineDepthStencilStateCreateInfo& VULKAN_HPP_NAMESPACE::PipelineDepthStencilStateCreateInfo::setFlags ( PipelineDepthStencilStateCreateFlags  flags_)
inline

Definition at line 10921 of file vulkan.hpp.

10922  {
10923  flags = flags_;
10924  return *this;
10925  }

References flags_.

◆ setFront()

PipelineDepthStencilStateCreateInfo& VULKAN_HPP_NAMESPACE::PipelineDepthStencilStateCreateInfo::setFront ( StencilOpState  front_)
inline

Definition at line 10957 of file vulkan.hpp.

10958  {
10959  front = front_;
10960  return *this;
10961  }

References front.

◆ setMaxDepthBounds()

PipelineDepthStencilStateCreateInfo& VULKAN_HPP_NAMESPACE::PipelineDepthStencilStateCreateInfo::setMaxDepthBounds ( float  maxDepthBounds_)
inline

Definition at line 10975 of file vulkan.hpp.

10976  {
10977  maxDepthBounds = maxDepthBounds_;
10978  return *this;
10979  }

References maxDepthBounds.

◆ setMinDepthBounds()

PipelineDepthStencilStateCreateInfo& VULKAN_HPP_NAMESPACE::PipelineDepthStencilStateCreateInfo::setMinDepthBounds ( float  minDepthBounds_)
inline

Definition at line 10969 of file vulkan.hpp.

10970  {
10971  minDepthBounds = minDepthBounds_;
10972  return *this;
10973  }

References minDepthBounds.

◆ setPNext()

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

Definition at line 10915 of file vulkan.hpp.

10916  {
10917  pNext = pNext_;
10918  return *this;
10919  }

References pNext.

◆ setStencilTestEnable()

PipelineDepthStencilStateCreateInfo& VULKAN_HPP_NAMESPACE::PipelineDepthStencilStateCreateInfo::setStencilTestEnable ( Bool32  stencilTestEnable_)
inline

Definition at line 10951 of file vulkan.hpp.

10952  {
10953  stencilTestEnable = stencilTestEnable_;
10954  return *this;
10955  }

References stencilTestEnable.

Field Documentation

◆ back

StencilOpState VULKAN_HPP_NAMESPACE::PipelineDepthStencilStateCreateInfo::back

Definition at line 11024 of file vulkan.hpp.

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

◆ depthBoundsTestEnable

Bool32 VULKAN_HPP_NAMESPACE::PipelineDepthStencilStateCreateInfo::depthBoundsTestEnable

Definition at line 11021 of file vulkan.hpp.

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

◆ depthCompareOp

CompareOp VULKAN_HPP_NAMESPACE::PipelineDepthStencilStateCreateInfo::depthCompareOp

Definition at line 11020 of file vulkan.hpp.

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

◆ depthTestEnable

Bool32 VULKAN_HPP_NAMESPACE::PipelineDepthStencilStateCreateInfo::depthTestEnable

Definition at line 11018 of file vulkan.hpp.

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

◆ depthWriteEnable

Bool32 VULKAN_HPP_NAMESPACE::PipelineDepthStencilStateCreateInfo::depthWriteEnable

Definition at line 11019 of file vulkan.hpp.

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

◆ flags

PipelineDepthStencilStateCreateFlags VULKAN_HPP_NAMESPACE::PipelineDepthStencilStateCreateInfo::flags

Definition at line 11017 of file vulkan.hpp.

Referenced by operator==().

◆ front

StencilOpState VULKAN_HPP_NAMESPACE::PipelineDepthStencilStateCreateInfo::front

Definition at line 11023 of file vulkan.hpp.

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

◆ maxDepthBounds

float VULKAN_HPP_NAMESPACE::PipelineDepthStencilStateCreateInfo::maxDepthBounds

Definition at line 11026 of file vulkan.hpp.

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

◆ minDepthBounds

float VULKAN_HPP_NAMESPACE::PipelineDepthStencilStateCreateInfo::minDepthBounds

Definition at line 11025 of file vulkan.hpp.

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

◆ pNext

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

Definition at line 11016 of file vulkan.hpp.

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

◆ stencilTestEnable

Bool32 VULKAN_HPP_NAMESPACE::PipelineDepthStencilStateCreateInfo::stencilTestEnable

Definition at line 11022 of file vulkan.hpp.

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

◆ sType

StructureType VULKAN_HPP_NAMESPACE::PipelineDepthStencilStateCreateInfo::sType = StructureType::ePipelineDepthStencilStateCreateInfo
private

Definition at line 11013 of file vulkan.hpp.

Referenced by operator==().


The documentation for this struct was generated from the following file:
VkPipelineDepthStencilStateCreateInfo
Definition: vulkan_core.h:2417
VULKAN_HPP_NAMESPACE::PipelineDepthStencilStateCreateInfo::PipelineDepthStencilStateCreateInfo
PipelineDepthStencilStateCreateInfo(PipelineDepthStencilStateCreateFlags flags_=PipelineDepthStencilStateCreateFlags(), Bool32 depthTestEnable_=0, Bool32 depthWriteEnable_=0, CompareOp depthCompareOp_=CompareOp::eNever, Bool32 depthBoundsTestEnable_=0, Bool32 stencilTestEnable_=0, StencilOpState front_=StencilOpState(), StencilOpState back_=StencilOpState(), float minDepthBounds_=0, float maxDepthBounds_=0)
Definition: vulkan.hpp:10882
VULKAN_HPP_NAMESPACE::PipelineDepthStencilStateCreateInfo::depthBoundsTestEnable
Bool32 depthBoundsTestEnable
Definition: vulkan.hpp:11021
memcpy
#define memcpy
Definition: SDL_malloc.c:630
VULKAN_HPP_NAMESPACE::PipelineDepthStencilStateCreateInfo::minDepthBounds
float minDepthBounds
Definition: vulkan.hpp:11025
VULKAN_HPP_NAMESPACE::PipelineDepthStencilStateCreateInfo::depthTestEnable
Bool32 depthTestEnable
Definition: vulkan.hpp:11018
VULKAN_HPP_NAMESPACE::PipelineDepthStencilStateCreateInfo::depthWriteEnable
Bool32 depthWriteEnable
Definition: vulkan.hpp:11019
VULKAN_HPP_NAMESPACE::PipelineDepthStencilStateCreateInfo::maxDepthBounds
float maxDepthBounds
Definition: vulkan.hpp:11026
VULKAN_HPP_NAMESPACE::PipelineDepthStencilStateCreateInfo::sType
StructureType sType
Definition: vulkan.hpp:11013
VULKAN_HPP_NAMESPACE::PipelineDepthStencilStateCreateInfo::operator==
bool operator==(PipelineDepthStencilStateCreateInfo const &rhs) const
Definition: vulkan.hpp:10991
VULKAN_HPP_NAMESPACE::PipelineDepthStencilStateCreateInfo::depthCompareOp
CompareOp depthCompareOp
Definition: vulkan.hpp:11020
VULKAN_HPP_NAMESPACE::PipelineDepthStencilStateCreateInfo::pNext
const void * pNext
Definition: vulkan.hpp:11016
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::PipelineDepthStencilStateCreateInfo::back
StencilOpState back
Definition: vulkan.hpp:11024
flags
GLbitfield flags
Definition: SDL_opengl_glext.h:1483
VULKAN_HPP_NAMESPACE::PipelineDepthStencilStateCreateInfo::front
StencilOpState front
Definition: vulkan.hpp:11023
VULKAN_HPP_NAMESPACE::PipelineDepthStencilStateCreateInfo::stencilTestEnable
Bool32 stencilTestEnable
Definition: vulkan.hpp:11022
VULKAN_HPP_NAMESPACE::PipelineDepthStencilStateCreateInfo::flags
PipelineDepthStencilStateCreateFlags flags
Definition: vulkan.hpp:11017