TOAPI.Types.BLENDFUNCTION.BLENDFUNCTION C# (CSharp) Method

BLENDFUNCTION() public method

public BLENDFUNCTION ( byte op, byte flags, byte alpha, byte format ) : System.Runtime.InteropServices
op byte
flags byte
alpha byte
format byte
return System.Runtime.InteropServices
		public BLENDFUNCTION(byte op, byte flags, byte alpha, byte format)
		{
			BlendOp = op;
			BlendFlags = flags;
			SourceConstantAlpha = alpha;
			AlphaFormat = format;
		}
	}
BLENDFUNCTION