disableAlphaWrite property

bool disableAlphaWrite
getter/setter pair

Saves GPU memory bandwidth by preventing writes to the alpha channel of the framebuffer. Benefit: Reduces GPU memory bandwidth by ~25% (writing 3 channels instead of 4) Cost: Can't composite the rendered texture with other elements using its alpha channel (needed to blend with Flutter UI)

Implementation

bool disableAlphaWrite;