Browse Source
Merge pull request #9003 from AvaloniaUI/fixes/remove-leftover-console-writeline
Removed leftover debug code
Blaz
Max Katz
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
5 deletions
-
src/Avalonia.Base/Rendering/Composition/Compositor.cs
|
|
|
@ -47,11 +47,7 @@ namespace Avalonia.Rendering.Composition |
|
|
|
{ |
|
|
|
Loop = loop; |
|
|
|
_server = new ServerCompositor(loop, gpu, _batchObjectPool, _batchMemoryPool); |
|
|
|
_commit = () => |
|
|
|
{ |
|
|
|
Console.WriteLine("Dispatcher:Commit"); |
|
|
|
Commit(); |
|
|
|
}; |
|
|
|
_commit = () => Commit(); |
|
|
|
|
|
|
|
DefaultEasing = new CubicBezierEasing(new Point(0.25f, 0.1f), new Point(0.25f, 1f)); |
|
|
|
} |
|
|
|
|