CSPspEmu.Core.Types.OutputPixel.FromRGBA C# (CSharp) Method

FromRGBA() public static method

public static FromRGBA ( byte R, byte G, byte B, byte A ) : OutputPixel
R byte
G byte
B byte
A byte
return OutputPixel
        public static OutputPixel FromRGBA(byte R, byte G, byte B, byte A)
        {
            return new OutputPixel() { R = R, G = G, B = B, A = A };
        }