![]() |
wisdom
|
C version:
C++ version:
Barrier flags for resource barriers.
Values:
WisBarrierFlagsNone = 0: No flags set. Barrier is regular.WisBarrierFlagsDepthResource = (1 << 0): Resource is a depth resource. This flag must be set for all depth resources to make transitions on them.WisBarrierFlagsStencilResource = (1 << 1): Resource is a stencil resource. This flag must be set for all stencil resources to make transitions on them.WisBarrierFlagsWholeRange = (1 << 2): Transition whole resource. If not set, the transition is applied only to the specified subresource range. If set, the subresource range is ignored and the transition is applied to all subresources of the resource.WisBarrierFlagsPlanarImage = (1 << 3): Resource is a planar image. If the flag is not set, plane slices in WisSubresourceRange are ignored.