mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-02-24 17:26:52 +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>
|
/// <summary>
|
||||||
/// Checks if a Wgl extension is supported by the given context.
|
/// Checks if a Wgl extension is supported by the given context.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="context">The device context.</param>
|
/// <param name="dc">The device context.</param>
|
||||||
/// <param name="ext">The extension to check.</param>
|
/// <param name="name">The extension to check.</param>
|
||||||
/// <returns>True if the extension is supported by the given context, false otherwise</returns>
|
/// <returns>True if the extension is supported by the given context, false otherwise</returns>
|
||||||
public static bool SupportsExtension(IntPtr dc, string name)
|
public static bool SupportsExtension(IntPtr dc, string name)
|
||||||
{
|
{
|
||||||
|
@ -100,7 +100,7 @@ namespace OpenTK.Platform.Windows
|
||||||
|
|
||||||
#region Protected Members
|
#region Protected Members
|
||||||
|
|
||||||
protected object SyncRoot
|
object SyncRoot
|
||||||
{
|
{
|
||||||
get { return sync; }
|
get { return sync; }
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue