-
-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ENH] DXGI: dxgidebug.h under Vortice.DXGI.Debug namespace.
[ENH] Direct3D12: Improve Debug MessageID enum values names.
- Loading branch information
1 parent
94ecf82
commit 0963d97
Showing
19 changed files
with
526 additions
and
74 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
// Copyright (c) Amer Koleci and contributors. | ||
// Distributed under the MIT license. See the LICENSE file in the project root for more information. | ||
|
||
using System.Drawing; | ||
using SharpGen.Runtime; | ||
|
||
namespace Vortice.DXGI | ||
{ | ||
public partial class IDXGIDecodeSwapChain | ||
{ | ||
public Size DestSize | ||
{ | ||
get | ||
{ | ||
GetDestSize(out int width, out int height); | ||
return new Size(width, height); | ||
} | ||
set | ||
{ | ||
SetDestSize(value.Width, value.Height); | ||
} | ||
} | ||
|
||
public Result PresentBuffer(int bufferToPresent, int syncInterval) | ||
{ | ||
return PresentBuffer(bufferToPresent, syncInterval, PresentFlags.None); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.