mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
Gamma Init
This commit is contained in:
51
app/WindowsDisplayAPI/DisplayLineCapabilities.cs
Normal file
51
app/WindowsDisplayAPI/DisplayLineCapabilities.cs
Normal file
@@ -0,0 +1,51 @@
|
||||
using System;
|
||||
|
||||
namespace WindowsDisplayAPI
|
||||
{
|
||||
/// <summary>
|
||||
/// Contains possible line drawing capabilities of a display device
|
||||
/// </summary>
|
||||
[Flags]
|
||||
public enum DisplayLineCapabilities
|
||||
{
|
||||
/// <summary>
|
||||
/// Device does not support lines.
|
||||
/// </summary>
|
||||
None = 0,
|
||||
|
||||
/// <summary>
|
||||
/// Device can draw a poly line.
|
||||
/// </summary>
|
||||
PolyLine = 2,
|
||||
|
||||
/// <summary>
|
||||
/// Device can draw a marker.
|
||||
/// </summary>
|
||||
Marker = 4,
|
||||
|
||||
/// <summary>
|
||||
/// Device can draw multiple markers.
|
||||
/// </summary>
|
||||
PolyMarker = 8,
|
||||
|
||||
/// <summary>
|
||||
/// Device can draw wide lines.
|
||||
/// </summary>
|
||||
Wide = 16,
|
||||
|
||||
/// <summary>
|
||||
/// Device can draw styled lines.
|
||||
/// </summary>
|
||||
Styled = 32,
|
||||
|
||||
/// <summary>
|
||||
/// Device can draw lines that are wide and styled.
|
||||
/// </summary>
|
||||
WideStyled = 64,
|
||||
|
||||
/// <summary>
|
||||
/// Device can draw interiors.
|
||||
/// </summary>
|
||||
Interiors = 128
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user