Movatterモバイル変換


[0]ホーム

URL:


Vulkan API Reference Pageslatest

VkCullModeFlagBits(3)

Name

VkCullModeFlagBits - Bitmask controlling triangle culling

C Specification

Once the orientation of triangles is determined, they are culled accordingto theVkPipelineRasterizationStateCreateInfo::cullMode propertyof the currently active pipeline.Possible values are:

// Provided by VK_VERSION_1_0typedef enum VkCullModeFlagBits {    VK_CULL_MODE_NONE = 0,    VK_CULL_MODE_FRONT_BIT = 0x00000001,    VK_CULL_MODE_BACK_BIT = 0x00000002,    VK_CULL_MODE_FRONT_AND_BACK = 0x00000003,} VkCullModeFlagBits;

Description

Following culling, fragments are produced for any triangles which have notbeen discarded.

See Also

Document Notes

For more information, see theVulkan Specification.

This page is extracted from the Vulkan Specification.Fixes and changes should be made to the Specification, not directly.


[8]ページ先頭

©2009-2026 Movatter.jp