BLENDFUNCTION.cs 191 B

1234567891011121314
  1. using System;
  2. namespace Standard;
  3. internal struct BLENDFUNCTION
  4. {
  5. public AC BlendOp;
  6. public byte BlendFlags;
  7. public byte SourceConstantAlpha;
  8. public AC AlphaFormat;
  9. }