TOAPI.Types.BLENDFUNCTION.BLENDFUNCTION C# (CSharp) 메소드

BLENDFUNCTION() 공개 메소드

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