Tópicos: Framebuffer Operations

Color Write Mask

outubro 21, 2023 2
Bits which can be set in VkPipelineColorBlendAttachmentState::colorWriteMask, determining whether the final color values R, G, B and A are written to the framebuffer attachment, are:typedef enum afxColorBitmask { afxColorMask_R = AFX_FLAG(0), /// specifies that the R value is written to ...
Ler mais

Logical Operations

outubro 21, 2023 2
The application can enable a logical operation between the fragment’s color values and the existing value in the framebuffer attachment. This logical operation is applied prior to updating the framebuffer attachment. Logical operations are applied only for signed and unsigned integer and normalized...
Ler mais

Blending

outubro 21, 2023 3
Blending combines the incoming source fragment’s R, G, B, and A values with the destination R, G, B, and A values of each sample stored in the framebuffer at the fragment’s (xf, yf) location. Blending is performed for each color sample covered by the fragment, rather than just once for each fragmen...
Ler mais
Translate »