// Copyright © 2014 The CefSharp Authors. All rights reserved. // // Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. namespace CefSharp.Enums { /// /// Describes how to interpret the alpha component of a pixel. /// public enum AlphaType { /// /// No transparency. The alpha component is ignored. /// Opaque, /// /// Transparency with pre-multiplied alpha component. /// PreMultiplied, /// /// Transparency with post-multiplied alpha component. /// PostMultiplied } }