MCPcopy Create free account
hub / github.com/HumbleUI/Skija / premultiply

Method premultiply

shared/java/Color4f.java:51–55  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

49 }
50
51 public Color4f premultiply() {
52 if (_a == 1f)
53 return this;
54 return new Color4f(_r * _a, _g * _a, _b * _a, _a);
55 }
56
57 public Color4f unpremultiply() {
58 if (_a == 1f)

Callers 1

makeLerpMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected