You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
470 B

  1. 
  2. using System.Runtime.InteropServices;
  3. namespace Apewer.Internals.Interop
  4. {
  5. /// <summary></summary>
  6. [StructLayout(LayoutKind.Sequential, Pack = 1)]
  7. struct BlendFunction
  8. {
  9. /// <summary></summary>
  10. public byte blendop;
  11. /// <summary></summary>
  12. public byte blendflags;
  13. /// <summary></summary>
  14. public byte sourceconstantalpha;
  15. /// <summary></summary>
  16. public byte alphaformat;
  17. }
  18. }