Julien Lebosquain
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
3 deletions
-
src/Windows/Avalonia.Win32/DComposition/NativeStructs.cs
|
|
|
@ -1,17 +1,16 @@ |
|
|
|
using System.Runtime.InteropServices; |
|
|
|
using Avalonia.Win32.DirectX; |
|
|
|
|
|
|
|
namespace Avalonia.Win32.DComposition; |
|
|
|
|
|
|
|
[StructLayout(LayoutKind.Sequential)] |
|
|
|
public struct DXGI_RATIONAL |
|
|
|
internal struct DXGI_RATIONAL |
|
|
|
{ |
|
|
|
public uint Numerator; |
|
|
|
public uint Denominator; |
|
|
|
} |
|
|
|
|
|
|
|
[StructLayout(LayoutKind.Sequential)] |
|
|
|
public struct DCOMPOSITION_FRAME_STATISTICS |
|
|
|
internal struct DCOMPOSITION_FRAME_STATISTICS |
|
|
|
{ |
|
|
|
public long lastFrameTime; |
|
|
|
public DXGI_RATIONAL currentCompositionRate; |
|
|
|
|