mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-02-24 17:36:55 +00:00
[Win] Fixed warnings
Protected object in static class and wrong parameter names in documentation
This commit is contained in:
parent
8558509379
commit
44526229be
|
@ -41,8 +41,8 @@ namespace OpenTK.Platform.Windows
|
|||
/// <summary>
|
||||
/// Checks if a Wgl extension is supported by the given context.
|
||||
/// </summary>
|
||||
/// <param name="context">The device context.</param>
|
||||
/// <param name="ext">The extension to check.</param>
|
||||
/// <param name="dc">The device context.</param>
|
||||
/// <param name="name">The extension to check.</param>
|
||||
/// <returns>True if the extension is supported by the given context, false otherwise</returns>
|
||||
public static bool SupportsExtension(IntPtr dc, string name)
|
||||
{
|
||||
|
@ -100,7 +100,7 @@ namespace OpenTK.Platform.Windows
|
|||
|
||||
#region Protected Members
|
||||
|
||||
protected object SyncRoot
|
||||
object SyncRoot
|
||||
{
|
||||
get { return sync; }
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue