We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2608f69 commit 449bc0eCopy full SHA for 449bc0e
src/Windows/Avalonia.Win32/DirectX/DxgiRenderTarget.cs
@@ -241,14 +241,6 @@ public override void Dispose()
241
_compositionTarget?.Dispose();
242
}
243
244
- internal static bool RectsEqual(in RECT l, in RECT r)
245
- {
246
- return (l.left == r.left)
247
- && (l.top == r.top)
248
- && (l.right == r.right)
249
- && (l.bottom == r.bottom);
250
- }
251
-
252
public bool IsTransparency => _transparencyLevel != WindowTransparencyLevel.None;
253
254
public void SetTransparencyLevel(WindowTransparencyLevel transparencyLevel)
0 commit comments