Struct D2D1FactoryOptions
Assembly: JeremyAnsel.DirectX.D2D1.dll
Syntax
public struct D2D1FactoryOptions : IEquatable<D2D1FactoryOptions>
Constructors
|
Edit this page
View Source
D2D1FactoryOptions(D2D1DebugLevel)
Declaration
public D2D1FactoryOptions(D2D1DebugLevel debugLevel)
Parameters
| Type |
Name |
Description |
| D2D1DebugLevel |
debugLevel |
The level of debugging information.
|
Properties
|
Edit this page
View Source
DebugLevel
Gets or sets a certain level of debugging information from the debug layer. This
parameter is ignored if the debug layer DLL is not present.
Declaration
public D2D1DebugLevel DebugLevel { get; set; }
Property Value
Methods
|
Edit this page
View Source
Equals(D2D1FactoryOptions)
Declaration
public readonly bool Equals(D2D1FactoryOptions other)
Parameters
Returns
|
Edit this page
View Source
Equals(object?)
Declaration
public override readonly bool Equals(object? obj)
Parameters
| Type |
Name |
Description |
| object |
obj |
|
Returns
Overrides
|
Edit this page
View Source
GetHashCode()
Declaration
public override readonly int GetHashCode()
Returns
Overrides
|
Edit this page
View Source
NativeReadFrom(nint)
Declaration
public static D2D1FactoryOptions NativeReadFrom(nint buffer)
Parameters
| Type |
Name |
Description |
| nint |
buffer |
|
Returns
|
Edit this page
View Source
NativeReadFrom(nint, Span<D2D1FactoryOptions>)
Declaration
public static void NativeReadFrom(nint buffer, Span<D2D1FactoryOptions> objects)
Parameters
|
Edit this page
View Source
NativeRequiredSize()
Declaration
public static int NativeRequiredSize()
Returns
|
Edit this page
View Source
NativeRequiredSize(int)
Declaration
public static int NativeRequiredSize(int count)
Parameters
| Type |
Name |
Description |
| int |
count |
|
Returns
|
Edit this page
View Source
NativeWriteTo(nint, in D2D1FactoryOptions)
Declaration
public static void NativeWriteTo(nint buffer, in D2D1FactoryOptions obj)
Parameters
|
Edit this page
View Source
NativeWriteTo(nint, ReadOnlySpan<D2D1FactoryOptions>)
Declaration
public static void NativeWriteTo(nint buffer, ReadOnlySpan<D2D1FactoryOptions> objects)
Parameters
Operators
|
Edit this page
View Source
operator ==(D2D1FactoryOptions, D2D1FactoryOptions)
Declaration
public static bool operator ==(D2D1FactoryOptions left, D2D1FactoryOptions right)
Parameters
Returns
|
Edit this page
View Source
operator !=(D2D1FactoryOptions, D2D1FactoryOptions)
Declaration
public static bool operator !=(D2D1FactoryOptions left, D2D1FactoryOptions right)
Parameters
Returns
Implements