@giro3d/giro3d
Version:
A JS/WebGL framework for 3D geospatial data visualization
27 lines • 783 B
TypeScript
/**
* Describes how a layer is blended into the background (either another layer or the background
* color).
*/
export declare enum BlendingMode {
/**
* No blending is performed, i.e if the layer has transparent or semi-transparent pixels,
* they become opaque.
*/
None = 0,
/**
* Normal [alpha blending](https://en.wikipedia.org/wiki/Alpha_compositing).
*/
Normal = 1,
/**
* Additive blending: pixel colors are added to the background pixel. The alpha channel is not
* used
*/
Add = 2,
/**
* Multiplicative blending: pixel colors are multiplied by the background pixel. The alpha
* channel is not used.
*/
Multiply = 3
}
export default BlendingMode;
//# sourceMappingURL=BlendingMode.d.ts.map