It’s common issue with textures with alpha channel that there are areas where full opaque color is blending to full transparent. Reason for that is the method of how source pixels are composed with screen pixels when drawn. To target this issue you would work with images that have every color component multiplied by alpha component and change blending method on graphics card. That’s why this method is called premultiplied alpha compositing.

Starting from version 1.6.0 Energy Bar Toolkit gives full support for premultiplied alpha images but this feature is optional. By default all textures components will be premultiplied by alpha just before drawing process. By selecting option listed above you tell EBT that your textures are already premultiplied by its alpha. Depending on how many energy bars you are using on your Scene this may increase your rendering performance.