Appearance
KBE3D / KBCore / Cesium / BlendEquation
枚举: BlendEquation
Determines how two pixels' values are combined.
枚举成员
ADD
ADD:
32774
Pixel values are added componentwise. This is used in additive blending for translucency.
SUBTRACT
SUBTRACT:
32778
Pixel values are subtracted componentwise (source - destination). This is used in alpha blending for translucency.
REVERSE_SUBTRACT
REVERSE_SUBTRACT:
32779
Pixel values are subtracted componentwise (destination - source).
MIN
MIN:
32775
Pixel values are given to the minimum function (min(source, destination)).
This equation operates on each pixel color component.
MAX
MAX:
32776
Pixel values are given to the maximum function (max(source, destination)).
This equation operates on each pixel color component.
