-
-
Notifications
You must be signed in to change notification settings - Fork 420
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Disable ref overloads for opaque pointer types (#1341)
* Overloading: Block ref overloader on opaque pointer types * Regenerate bindings after rebase * BuildTools: Spice up the console output with some colour This makes generation exceptions print as red, and the final job summary print succeeded jobs as green, and failed jobs as red, providing much more visual clarity * Move DirectWrite into the Direct2D project * Win32Extras: Add evntprov.h This re-adds the missing ref overloads for functions like EnableTraceEx * BuildTools: Dont print duplicate ComBases This can happen when something has 2 ComBases that were typemapped to IUnknown * Win32Extras: Add Documenttarget.h to bindings * Win32Extras: Typemap the new stuff * This Is Not The First Time Ive Done This * annihilated. * fix solution file * Fix nested path issue, not sure how this didn't happen to Vulkan Video? * silly fixes --------- Co-authored-by: Dylan Perks <dylanperks23@gmail.com>
- Loading branch information
Showing
908 changed files
with
25,614 additions
and
60,673 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
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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
Submodule SDL
updated
1184 files
Submodule SwiftShader
updated
143 files
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
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
26 changes: 26 additions & 0 deletions
26
src/Core/Silk.NET.Core.Win32Extras/Enums/EventInfoClass.gen.cs
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,26 @@ | ||
// Licensed to the .NET Foundation under one or more agreements. | ||
// The .NET Foundation licenses this file to you under the MIT license. | ||
|
||
|
||
using System; | ||
using Silk.NET.Core.Attributes; | ||
|
||
#pragma warning disable 1591 | ||
|
||
namespace Silk.NET.Core.Win32Extras | ||
{ | ||
[NativeName("Name", "_EVENT_INFO_CLASS")] | ||
public enum EventInfoClass : int | ||
{ | ||
[NativeName("Name", "EventProviderBinaryTrackInfo")] | ||
EventProviderBinaryTrackInfo = 0x0, | ||
[NativeName("Name", "EventProviderSetReserved1")] | ||
EventProviderSetReserved1 = 0x1, | ||
[NativeName("Name", "EventProviderSetTraits")] | ||
EventProviderSetTraits = 0x2, | ||
[NativeName("Name", "EventProviderUseDescriptorType")] | ||
EventProviderUseDescriptorType = 0x3, | ||
[NativeName("Name", "MaxEventInfo")] | ||
MaxEventInfo = 0x4, | ||
} | ||
} |
Oops, something went wrong.