ProcessorFeature.cs 180 B

12345678910111213
  1. using System;
  2. namespace PaintDotNet.SystemLayer
  3. {
  4. [Flags]
  5. public enum ProcessorFeature
  6. {
  7. DEP = 1,
  8. SSE = 2,
  9. SSE2 = 4,
  10. SSE3 = 8,
  11. }
  12. }