BLENDFUNCTION.cs 401 B

123456789101112131415161718
  1. using System;
  2. namespace LYFZ.OtherExpansion.Win32.Struct
  3. {
  4. public struct BLENDFUNCTION
  5. {
  6. public byte BlendOp;
  7. public byte BlendFlags;
  8. public byte SourceConstantAlpha;
  9. public byte AlphaFormat;
  10. public BLENDFUNCTION(byte op, byte flags, byte alpha, byte format)
  11. {
  12. this.BlendOp = op;
  13. this.BlendFlags = flags;
  14. this.SourceConstantAlpha = alpha;
  15. this.AlphaFormat = format;
  16. }
  17. }
  18. }